curl --request DELETE \
--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>"
}
}Remove tag relationships to contact resource using a list of resource identifiers.
Request body includes a list of resource identifiers, id: CONTACT_TAG_ID, type: "contact_tags".
{ "data": [{ "type": "contact_tags", "id": "456" }] }
The response body will include the updated list of tag relationships.
Example response body:
{ "data": [{ "type": "contact_tags", "id": "123" }] }
curl --request DELETE \
--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>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
Was this page helpful?