Skip to content
Guides
CatalogProducts
catalog:read

List product activity

Returns the product audit trail, including each change, timestamp, and actor.

GET/v1/catalog/products/{productId}/activity

Returns the product audit trail, including each change, timestamp, and actor.

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

Path Parameters

productId*string

Identifier of the product.

Query Parameters

limit?integer

Maximum number of results to return.

Formatint32
cursor?string

Opaque cursor from the previous response. Omit it on the first page.

search?string

Free-text filter. Which fields it covers depends on the resource.

sortBy?string

Field to sort by. Accepted values depend on the resource.

sortDirection?string

Sort direction: asc or desc.

Value in

  • "asc"
  • "desc"
variantId?string

Identifier of the variant.

locationId?string

Identifier of the location.

source?string

Source of the data.

Value in

  • "product"
  • "price"
  • "inventory"

Header Parameters

x-Store-Id?string

Store the request acts on. Not needed when the token is bound to a store.

Authorization*string

OAuth 2.0 bearer token.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/catalog/products/7204558912004325301/activity" \  -H "x-Store-Id: <store-id>" \  -H "Authorization: Bearer <token>"
{  "data": [    {      "id": "7204558912004325301",      "source": "product",      "action": "example",      "timestamp": "2026-08-01T15:30:00Z",      "userId": "2f40d7e4-3d9c-4ab2-b04e-7a6a132db821",      "userEmail": "andrea@example.com",      "userName": "Example resource",      "actorSource": "example",      "clientId": "app_replace_with_your_client_id",      "entityName": "Comercial Lima SAC",      "productId": "7204558912004325301",      "variantId": "7204558912004325301",      "variantName": "Example resource",      "sku": "SKU-001",      "locationId": "7204558912004325301",      "locationName": "Example resource",      "reason": "Example note.",      "referenceKind": "transfer",      "referenceId": "7204558912004325301",      "changes": [        {          "field": "example",          "before": "example",          "after": "example"        }      ]    }  ],  "hasNextPage": false,  "nextCursor": "example",  "totalCount": 1}