GET
/
v1
/
contacts
/
{id}
Contact details
curl --request GET \
  --url https://api.kajabi.com/v1/contacts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "name": "<string>",
      "email": "<string>",
      "phone_number": "<string>",
      "business_number": "<string>",
      "subscribed": true,
      "address_line_1": "<string>",
      "address_line_2": "<string>",
      "address_city": "<string>",
      "address_state": "<string>",
      "address_country": "<string>",
      "external_user_id": "<string>",
      "address_zip": "<string>",
      "custom_1": "<string>",
      "custom_2": "<string>",
      "custom_3": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    },
    "relationships": {
      "customer": {
        "data": {
          "id": "<string>",
          "type": "<string>"
        }
      },
      "offers": {
        "data": [
          {
            "id": "<string>",
            "type": "<string>"
          }
        ],
        "links": {
          "self": "<string>"
        }
      },
      "site": {
        "data": {
          "id": "<string>",
          "type": "<string>"
        }
      },
      "tags": {
        "data": [
          {
            "id": "<string>",
            "type": "<string>"
          }
        ]
      }
    },
    "links": {
      "customer": "<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

include
string

with ?include=offers,tags,customer the response will include the related contact offers, tags and customer resources

fields[contacts]
string

Sparse fields, use: name, email for example ?fields[contacts]=name,email

Response

Success, shows details for specified contact and tags relationship

data
object