curl --request GET \
--url https://api.kajabi.com/v1/customers/{customer_id}/relationships/offers \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "<string>"
}
],
"links": {
"self": "<string>"
}
}Get the customer’s relationship to offers (granted).
Response is a list of resource identifiers
{
"data": [
{ "type": "offers", "id": "123" },
{ "type": "offers", "id": "456" }
]
}
The related tag resources are available using the GET api/v1/offers endpoint.
The resource identifier includes the offer id and type.
Example URLs: /api/v1/offers/123, /api/v1/offers/456
curl --request GET \
--url https://api.kajabi.com/v1/customers/{customer_id}/relationships/offers \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "<string>"
}
],
"links": {
"self": "<string>"
}
}Was this page helpful?