Messages
A Message represents a change or an action performed on a resource, for example an Order or a Product.
Messages are available in a variety of Message Types specific to a resource. Common fields across Message Types are represented by a base resource, Message. In addition to these common fields, each Message contains further fields related to a particular change or action (for example, the field firstName is present on a CustomerFirstNameSet Message).
You can access Messages either by querying the API, or by subscribing to them with a Subscription. To query them using the API, you must enable the feature first.
Message Types
To see a list of available Message Types for a specific resource, use the following table:
| Messages page | Represented resources |
|---|---|
| Approval Rule and Approval Flow Messages | Approval Rules, Approval Flows |
| Business Unit and Associate Role Messages | Business Units, Associate Roles |
| Customer Messages | Customers, Customer Tokens, Customer Groups |
| Order and Payment Messages | Orders, Order Edits, Payments |
| Pricing and Discount Messages | Cart Discounts, Discount Codes, Standalone Prices |
| Product Catalog Messages | Products, Product Selections, Product Tailorings, Categories, Inventory Entries, Reviews |
| Quote Messages | Quote Requests, Staged Quotes, Quotes |
| Shopping List Messages | Shopping Lists |
| Store Messages | Stores |
Representations
Message
Base representation of a Message containing common fields to all Message Types.
idString | Unique identifier of the Message. Can be used to track which Messages have been processed. |
versionInt | Version of a resource. In case of Messages, this is always |
sequenceNumberInt | Message number in relation to other Messages for a given resource. The |
resource | Reference to the resource on which the change or action was performed. |
resourceVersionInt | Version of the resource on which the change or action was performed. |
typeString | Message Type of the Message. |
resourceUserProvidedIdentifiers | User-provided identifiers of the resource, such as |
createdAt | Date and time (UTC) the Message was generated. |
createdByBETA | IDs and references that created the Message. |
lastModifiedAt | Value of |
lastModifiedByBETA | IDs and references that last modified the Message. |
Message fields that can be used in query predicates: createdAt, lastModifiedAt, id, version, sequenceNumber, resource, resourceVersion, type.
MessagePagedQueryResponse
PagedQueryResult with results containing an array of Message.
limitInt | Number of results requested. Default:20Maximum: 500 |
countInt | Actual number of results returned. |
totalInt | Total number of results matching the query.
This number is an estimation that is not strongly consistent.
This field is returned by default.
For improved performance, calculating this field can be deactivated by using the query parameter |
offsetInt | Number of elements skipped. Default:0Maximum: 10 000 |
resultsArray of Message | Messages matching the query. |
UserProvidedIdentifiers
User-provided identifiers present on the resource for which the Message is created. The value of the identifier stored in the Message corresponds to the one that was set on the resource at the version shown in resourceVersion.
keyString | User-provided unique identifier of the resource. |
customerNumberString | User-provided unique identifier of a Customer. |
externalIdString | User-provided unique identifier of the resource. |
orderNumberString | User-provided unique identifier of an Order. |
skuString | Unique SKU of a Product Variant. |
slug | Unique identifier usually used in deep-link URLs for a Product. The value corresponds to the slug in the |
containerAndKey | Unique identifier of a Custom Object. |
ContainerAndKey
ContainerAndKey is specific to Custom Objects. Custom Objects are grouped into containers, which can be used like namespaces. Within a given container, a user-defined key can be used to uniquely identify resources.
keyString | User-defined identifier that is unique within the given container. |
containerString | Namespace to group Custom Objects. |
Enable querying Messages via the API
To optimize the performance of your Project, Messages are not persisted by default. To access Messages via the API, you must first enable the feature in the Settings > Developer Settings section of the Merchant Center. Alternatively, you can use the Change Messages Configuration update action.
Get Message
Deprecated OAuth 2.0 Scope: view_orders:{projectKey}
view_messages:{projectKey}regionString | Region in which the Project is hosted. |
projectKeyString |
|
idString |
|
expand | The parameter can be passed multiple times. |
application/jsoncurl --get https://api.{region}.commercetools.com/{projectKey}/messages/{id} -i \--header "Authorization: Bearer ${BEARER_TOKEN}"
{"id": "2723ca8f-283c-4add-90bc-0978d195ed3c","version": 1,"sequenceNumber": 4,"resource": {"typeId": "payment","id": "e57c8183-eb2b-4bf3-acf1-f8a7846689f8"},"resourceVersion": 5,"resourceUserProvidedIdentifiers": {"key": "e57-payment-key"},"type": "PaymentStatusInterfaceCodeSet","paymentId": "e57c8183-eb2b-4bf3-acf1-f8a7846689f8","interfaceCode": "InterfaceCodeString","createdAt": "1970-01-01T00:00:00.001Z","lastModifiedAt": "1970-01-01T00:00:00.001Z","lastModifiedBy": {"clientId": "ey8aTsYwE0_kxFvT1rJeglpC","isPlatformClient": false},"createdBy": {"clientId": "ey8aTsYwE0_kxFvT1rJeglpC","isPlatformClient": false}}
Query Messages
Deprecated OAuth 2.0 Scope: view_orders:{projectKey}
view_messages:{projectKey}regionString | Region in which the Project is hosted. |
projectKeyString |
|
where | The parameter can be passed multiple times. |
sort | The parameter can be passed multiple times. |
expand | The parameter can be passed multiple times. |
limitInt | Number of results requested. Default: 20 |
offsetInt | Number of elements skipped. Default: 0 |
withTotalBoolean | Controls the calculation of the total number of query results. Set to Default: true |
var.<varName>String | Predicate parameter values. The parameter can be passed multiple times. |
application/jsoncurl --get https://api.{region}.commercetools.com/{projectKey}/messages -i \--header "Authorization: Bearer ${BEARER_TOKEN}"
{"limit": 20,"offset": 0,"count": 1,"total": 1,"results": [{"id": "2723ca8f-283c-4add-90bc-0978d195ed3c","version": 1,"sequenceNumber": 4,"resource": {"typeId": "payment","id": "e57c8183-eb2b-4bf3-acf1-f8a7846689f8"},"resourceVersion": 5,"resourceUserProvidedIdentifiers": {"key": "e57-payment-key"},"type": "PaymentStatusInterfaceCodeSet","paymentId": "e57c8183-eb2b-4bf3-acf1-f8a7846689f8","interfaceCode": "InterfaceCodeString","createdAt": "1970-01-01T00:00:00.001Z","lastModifiedAt": "1970-01-01T00:00:00.001Z","lastModifiedBy": {"clientId": "ey8aTsYwE0_kxFvT1rJeglpC","isPlatformClient": false},"createdBy": {"clientId": "ey8aTsYwE0_kxFvT1rJeglpC","isPlatformClient": false}}]}
Check if Message exists
Check if Message exists by ID
Checks if a Message exists for a given id. Returns a 200 OK status if the Message exists or a 404 Not Found otherwise.
view_messages:{projectKey}regionString | Region in which the Project is hosted. |
projectKeyString |
|
idString |
|
curl --head https://api.{region}.commercetools.com/{projectKey}/messages/{id} -i \--header "Authorization: Bearer ${BEARER_TOKEN}"
Check if Message exists by Query Predicate
Checks if a Message exists for a given Query Predicate. Returns a 200 OK status if any Messages match the Query Predicate or a 404 Not Found otherwise.
view_messages:{projectKey}regionString | Region in which the Project is hosted. |
projectKeyString |
|
where |
curl --head https://api.{region}.commercetools.com/{projectKey}/messages -i \--header "Authorization: Bearer ${BEARER_TOKEN}"