Skip to main content
POST
/
item
/
add_custom_field
Item - Add Custom Field
curl --request POST \
  --url https://api.skulabs.com/item/add_custom_field \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "item_id": "<string>",
  "field": "<string>",
  "value": "<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

value
string
required

Custom field value

Response

Custom field added

success
boolean
required

Whether the operation succeeded