GET
/
v1
/
custom_fields
/
{id}
Custom field details
curl --request GET \
  --url https://api.kajabi.com/v1/custom_fields/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "title": "<string>",
      "handle": "<string>",
      "type": "<string>",
      "required": true
    },
    "relationships": {
      "site": {
        "data": {
          "id": "<string>",
          "type": "<string>"
        }
      }
    }
  },
  "links": {
    "self": "<string>",
    "current": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Query Parameters

fields[custom_fields]
string

Partial attributes as specified, e.g. fields[custom_fields]=title,handle

Response

Success, shows details of a custom field

data
object