GET
/
v1
/
contact_tags
List contact tags
curl --request GET \
  --url https://api.kajabi.com/v1/contact_tags \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "name": "<string>"
      },
      "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: name, email, for descending order use '-' e.g. &sort=-name

page[number]
number
page[size]
number

Number of documents

fields[contact_tags]
string

Partial attributes as specified, e.g. fields[contact_tags]=name

filter[site_id]
string

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

filter[name_cont]
string

Filter by name contains, for example ?filter[name_cont]=vip

Response

Success, list of contact tags which the current user may access

data
object[]