GET
/
v1
/
contacts
/
{contact_id}
/
relationships
/
offers
List contact's offers
curl --request GET \
  --url https://api.kajabi.com/v1/contacts/{contact_id}/relationships/offers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>"
    }
  ],
  "links": {
    "self": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

contact_id
string
required

Response

Success, shows details for tags relationship

data
object[]