PUT
/
v4
/
custom_fields
/
{id}
curl --request PUT \
  --url https://api.kit.com/v4/custom_fields/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-Kit-Api-Key: <api-key>' \
  --data '{
  "label": "Last name"
}'
{
  "custom_field": {
    "id": 1425,
    "name": "ck_field_1425_last_name",
    "key": "last_name",
    "label": "Last name"
  }
}

Authorizations

X-Kit-Api-Key
string
header
required

Authenticate API requests via an API Key

Path Parameters

id
integer
required

Body

application/json

Response

200
application/json

Updates the custom field and returns its details

The response is of type object.