Overview
The bulk delete endpoint allows you to remove multiple products from your catalog in a single request. This is useful for cleaning up outdated products or removing products in batch.
Authentication
This endpoint requires a valid JWT token in the x-auth-token header. You can find your token in the Developers section:
x-auth-token: your_jwt_token
Query Parameters
Comma-separated list of product IDs to delete. For example: ids=prod_12345,prod_67890,prod_11111
Response
Indicates if the deletion was successful
A human-readable message describing the result
{
"success": true,
"message": "Products delete queued successfully"
}
Rate Limiting
You can call the bulk delete endpoint up to 500 times per 5 minutes.
After that will
Exceeding this limit will make it impossible for you to make further calls to this endpoint for 3, 12 and finally 24 hours. If this limit is exceeded four times you will not be allowed to make calls to this endpoint indefinitely.