Skip to main content
DELETE
/
distributor
/
bulk_remove_item
Distributor - Bulk Remove Item
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
id
string
required

Supplier ID

Example:

"507f1f77bcf86cd799439011"

item_ids
string[]
required

Array of distributor item entry IDs to remove

Example:
["507f1f77bcf86cd799439011"]

Response

Items removed from supplier successfully

success
boolean
required

Whether the operation succeeded