PATCH
/
v1
/
contacts
/
{contact_id}
/
relationships
/
tags
Replace tags for contact
curl --request PATCH \
  --url https://api.kajabi.com/v1/contacts/{contact_id}/relationships/tags \
  --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

contact_id
string
required

Body

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

Response

Success, replaces tag relationships of contact resource

data
object[]