List product activity
Returns the product audit trail, including each change, timestamp, and actor.
/v1/catalog/products/{productId}/activityReturns the product audit trail, including each change, timestamp, and actor.
Authorization
bearerAuth OAuth2 access token issued by Ecomiq Auth.
In: header
Path Parameters
Identifier of the product.
Query Parameters
Maximum number of results to return.
int32Opaque cursor from the previous response. Omit it on the first page.
Free-text filter. Which fields it covers depends on the resource.
Field to sort by. Accepted values depend on the resource.
Sort direction: asc or desc.
Value in
- "asc"
- "desc"
Identifier of the variant.
Identifier of the location.
Source of the data.
Value in
- "product"
- "price"
- "inventory"
Header Parameters
Store the request acts on. Not needed when the token is bound to a store.
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}