Skip to main content
DELETE
/
location
/
remove_item
Location - Remove Item
curl --request DELETE \
  --url https://api.skulabs.com/location/remove_item \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "507f1f77bcf86cd799439011",
  "item_id": "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

Location ID

Example:

"507f1f77bcf86cd799439011"

item_id
string
required

SKULabs item ID to remove from location

Example:

"507f1f77bcf86cd799439011"

Response

Item removed from location successfully

success
boolean
required

Whether the operation succeeded