GET
/
v1
/
custom_fields
List custom fields
curl --request GET \
  --url https://api.kajabi.com/v1/custom_fields \
  --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.

Query Parameters

sort
string

Sort order, use: title, handle, type, required for descending order use '-' e.g. &sort=-title

page[number]
number
page[size]
number

Number of documents

fields[custom_fields]
string

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

filter[site_id]
string

Filter by site_id, for example ?filter[site_id]=111

filter[title_cont]
string

Filter by title contains, for example ?filter[title_cont]=favorite

filter[type_eq]
string

Filter by field type equals, for example ?filter[type_eq]=TextField

filter[required_eq]
string

Filter by required field equals, for example ?filter[required_eq]=true

Response

Success, list of custom fields which the current user may access

data
object[]