Bulk Delete Listing Profiles
POST/api/v2/sales-channel-listing-profiles/bulk-destroy
Bulk delete listing profiles. Provide either an explicit ids array, or set apply_to_all to true with a filters object to delete every profile matching the current filter set. Requires the listing-publishing feature to be enabled (403 otherwise).
Authentication: Requires Bearer token.
Request body (one of):
- ids: array of profile IDs to delete (required unless apply_to_all is true)
- apply_to_all: when true, delete all profiles matching filters
- filters: filter object (e.g. { "sales_channel_id": 5 }) applied when apply_to_all is true
Request
Responses
- 200
- 401
- 403
- 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.
Unprocessable Content
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.