GET
/
v1
/
customers
/
{id}
Customer details
curl --request GET \
  --url https://api.kajabi.com/v1/customers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "name": "<string>",
      "email": "<string>",
      "avatar": "<string>",
      "external_user_id": "<string>",
      "public_bio": "<string>",
      "public_location": "<string>",
      "public_website": "<string>",
      "socials": {
        "twitter": "<string>",
        "facebook": "<string>",
        "instagram": "<string>"
      },
      "net_revenue": "<string>",
      "sign_in_count": 123,
      "last_request_at": "<string>",
      "bounced_at": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    },
    "relationships": {
      "contact": {
        "data": {
          "id": "<string>",
          "type": "<string>"
        }
      },
      "site": {
        "data": {
          "id": "<string>",
          "type": "<string>"
        }
      },
      "offers": {
        "data": [
          {
            "id": "<string>",
            "type": "<string>"
          }
        ],
        "links": {
          "self": "<string>"
        }
      },
      "products": {
        "data": [
          {
            "id": "<string>",
            "type": "<string>"
          }
        ]
      }
    },
    "links": {
      "contact": "<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,products the response will include the related resources

fields[customers]
string

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

Response

Success, shows details for specified customer

data
object