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
}Add a custom field key-value pair to a kit.
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
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Custom field added to kit
Whether the operation succeeded