POST
/
v1
/
customers
/
{customer_id}
/
relationships
/
offers
Grant offer to customer
curl --request POST \
  --url https://api.kajabi.com/v1/customers/{customer_id}/relationships/offers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": [
    {
      "id": "<string>",
      "type": "<string>"
    }
  ]
}'
{
  "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

customer_id
string
required

Body

application/vnd.api+json
data
object[]
required

Response

Success, offer (granted) using relationship to customer resource

data
object[]