Skip to main content
DELETE
/
item
/
remove_custom_field
Item - Remove Custom Field
curl --request DELETE \
  --url https://api.skulabs.com/item/remove_custom_field \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "item_id": "<string>",
  "field": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
item_id
string
required

Item ID

field
string
required

Custom field name to remove

Response

Custom field removed

success
boolean
required

Whether the operation succeeded