Delete product collection
DELETE /v2/product/collection/:id
Soft-deletes multiple product collections by their identifiers. The operation returns a per-collection deletion status and aggregate metadata indicating how many collections were matched, deleted, and not deleted (e.g., missing or inaccessible).
Response Example
{
"deleted": {
"collection-id-1": true,
"collection-id-2": true,
"unknown-id": false
},
"metadata": {
"matchedCount": 2,
"deletedCount": 2,
"notDeletedCount": 1
}
}