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

Body

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

Response

Success, adds tag relationship to contact resource

data
object[]