Bulk Product Operation (Sync)
POST/api/magento1/instances/:integrationInstance/products/bulk
Runs a bulk operation on catalog products synchronously — best for small "Selected Only" requests. For large "All Filtered" sets that may exceed the HTTP timeout, use Bulk Product Operation (Tracked) instead.
Body fields:
- action (string, required): one of archive, unarchive, delete, map, unmap, create, remap.
map/remaplink by the product's own SKU;archiveskips products that already carry channel orders. - selection (object, required):
- selection.type (required): selected | visible | filtered.
- selection.ids (
array<int>, required when type=selected): magento1_products.id PKs. - selection.filters (object, optional): the same filter[...] tree as the listing, used when type=filtered/visible to resolve the id set server-side.
- options (object, optional): action-specific options.
Returns per-action counts. 422 if the selection resolves to zero products.
Authentication: Requires Bearer token.
Request
Responses
- 200
- 401
- 403
- 404
- 422
- 429
OK
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Unprocessable Entity
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.