Get a Custom Field

Get custom field

Path Parameters
  • id
    Type: integer
    required

    the custom field primary key

Headers
  • Content-Type
    Type: string

    application/json

Responses
  • application/json
  • application/json
  • application/json
Request Example for get/custom_fields/{id}
curl /custom_fields/1 \
  --header 'Content-Type: application/json' \
  --header 'X-Auth-Token: YOUR_SECRET_TOKEN'
{
  "custom_field": {
    "id": 1,
    "key": "string",
    "label": "string",
    "object_ref": "string",
    "active": true,
    "created_at": "2026-06-19T19:21:28.100Z",
    "updated_at": "2026-06-19T19:21:28.100Z"
  }
}