curl --request DELETE \
--url https://api.skulabs.com/distributor/bulk_remove_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "507f1f77bcf86cd799439011",
"item_ids": [
"507f1f77bcf86cd799439011"
]
}
'{
"success": true
}Remove multiple items from a distributor’s catalog in a single request.
curl --request DELETE \
--url https://api.skulabs.com/distributor/bulk_remove_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "507f1f77bcf86cd799439011",
"item_ids": [
"507f1f77bcf86cd799439011"
]
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Items removed from supplier successfully
Whether the operation succeeded