Skip to main content
POST
/
kit
/
add_custom_field
Kit - Add Custom Field
curl --request POST \
  --url https://api.skulabs.com/kit/add_custom_field \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "kit_id": "<string>",
  "field": "<string>",
  "value": "<string>"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://skulabs.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json
kit_id
string
required

Kit ID

field
string
required

Custom field name

value
string
required

Custom field value (use "REMOVE" to delete an existing field)

Response

Custom field added to kit

success
boolean
required

Whether the operation succeeded