beel_delete_products_bulk
Delete up to 100 company catalog products per request. Get a detailed response showing which product IDs were deleted and which failed, with summary counts.
Instructions
Deletes the products listed in ids from the catalog of this company, up to 100 IDs
per request; send several requests for more.
Partial operation: the response reports which products were deleted (
deleted_products) and which failed (errors, one entry per product with itsproduct_id), with the counts insummary. That is why it answers200with a body instead of204.
Endpoint: DELETE /v1/companies/{company_id}/products/bulk
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | Comma-separated product IDs (max 100 per request) | |
| company_id | Yes | Unique identifier (UUID) of the company the operation acts on — its identifier, not its NIF. It is the only source of context: the account that owns it is derived from it, and the `BeeL-Active-Company` header plays no part. A company you do not reach answers `403`, and so does a company that does not exist, so the existence of a company in another account is never disclosed. |