Learn about the Merchant Center API and how it helps you connect to commercetools APIs.
Customizations need to fetch data from different Composable Commerce APIs. For example, an application might fetch channel information or update product data.
Accessing Composable Commerce APIs requires authentication. For security reasons, client-side applications cannot be trusted with sensitive credentials, which makes it difficult to connect to an API directly from the browser.
Cloud Regions
Hostnames
The Merchant Center and the Merchant Center API Gateway are available in the same cloud Regions where Composable Commerce runs.
commercetools.com
and follow a specific naming format, including the cloud provider, the cloud Region, and the Merchant Center service name.https://{mcService}.{region}.{cloudProvider}.commercetools.com
mcService
: the Merchant Center service, eithermc
for the frontend application, ormc-api
for the API Gateway.region
: the Region of the cloud provider (see the following table).cloudProvider
: the cloud provider, eithergcp
oraws
.
Available regions
Cloud Region | Merchant Center API Gateway hostname |
---|---|
Australia (Google Cloud, Sydney) | mc-api.australia-southeast1.gcp.commercetools.com |
Europe (Google Cloud, Belgium) | mc-api.europe-west1.gcp.commercetools.com |
Europe (AWS, Frankfurt) | mc-api.eu-central-1.aws.commercetools.com |
North America (Google Cloud, Iowa) | mc-api.us-central1.gcp.commercetools.com |
North America (AWS, Ohio) | mc-api.us-east-2.aws.commercetools.com |
Cloud identifiers
Cloud Region | Cloud identifier |
---|---|
Australia (Google Cloud, Sydney) | gcp-au |
Europe (Google Cloud, Belgium) | gcp-eu |
Europe (AWS, Frankfurt) | aws-eu |
North America (Google Cloud, Iowa) | gcp-us |
North America (AWS, Ohio) | aws-us |
Authentication
Cookie
header, which is set only for <cloud-region>.commercetools.com
domains.mcAccessToken
and is valid for 30 days.Cookie: mcAccessToken=<jwt>
credentials: "include"
option of the Fetch API.Authorization
HTTP header.Authorization: Bearer <token>
The token is accessible from the session storage:
window.sessionStorage.getItem('sessionToken');
Obtain a session token
mcAccessToken
is granted upon user login and is stored in a secure cookie in the browser.The Merchant Center API provides two endpoints for authenticating a user:
/tokens
: for normal login usingemail
andpassword
./tokens/sso
: for login using anidToken
from an SSO workflow (see Single sign-on).
When you develop a customization, all authentication logic is handled implicitly and no further setup is needed from your side.
HTTP headers
To access the Merchant Center API, you must include the following HTTP headers in the HTTP request:
Header | Required | Description |
---|---|---|
Accept | Required | Set it to application/json . |
Authorization | Required only in development. | For more information, see Authentication. |
Content-Type | Required when sending a payload. | Set it to application/json when sending JSON data. |
X-Application-ID | Required only for Custom Applications. | The identifier of the Custom Application. Set it to <applicationId>:<entryPointUriPath> . See Custom Application config for details. |
X-Custom-View-ID | Required only for Custom Views. | The identifier of the Custom View. |
X-Correlation-ID | Recommended | The unique identifier of the request. Set it to mc/<projectKey>/<userId>/<randomHash> . The randomHash can be generated using the uuid library. |
X-Project-Key | Required | The key of the commercetools Project currently being used by the customization. Validation is performed by the Merchant Center API Gateway. The project key can be retrieved from the Application or Custom View context. |
X-User-Agent | Recommended | Set it to a custom user-agent that identifies the HTTP client, for example using the HTTP user-agent library. |
API Gateway endpoints
The Merchant Center API primarily acts as an API Gateway with the following responsibilities:
- verifying the user session.
- routing the request to the correct route handler, specific to the targeted API.
- ensures that requests to the target APIs are properly authenticated and authorized (OAuth scopes and user permissions).
The following API endpoints are available:
/graphql
: used for GraphQL requests./proxy/*
: used for REST requests.
/graphql
/graphql
endpoint.https://mc-api.<cloud-region>.commercetools.com/graphql
X-Graphql-Target
.The following targets are available:
ctp
: proxies requests to the Composable Commerce GraphQL API.change-history
: proxies requests to the Composable Commerce Change History API.mc
: proxies requests to the Merchant Center GraphQL API.
/proxy/:target/*
The Merchant Center API exposes multiple proxy endpoints to target a specific REST API.
https://mc-api.<cloud-region>.commercetools.com/proxy/*
The following proxy endpoints are available:
/proxy/ctp/*
: proxies requests to the Composable Commerce HTTP API./proxy/import/*
: proxies requests to the Import API./proxy/forward-to
: see Integrate with your own API.
The proxy endpoints work by acting as "prefixes" to the actual endpoint path of the targeted API.
For example:
// To use the Orders API, you would send a request to:
https://api.europe-west1.gcp.commercetools.com
/:projectKey/orders
// The same results would be achieved using the API Gateway like:
https://mc-api.europe-west1.gcp.commercetools.com
/proxy/ctp
/:projectKey/orders