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