Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Returns sample webhook payload for the tag_removed
event:
[
{
"id": "0",
"type": "contacts",
"attributes": {
"name": "Sample Recipient",
"email": "sample@example.com",
"address_line_1": "123 Kajabi Ln",
"address_line_2": "Kajabi Suite 4",
"address_city": "Kajabiwood",
"address_country": "United Sites of Kajabi",
"address_state": "Kajabifornia",
"address_zip": "99999",
"phone_number": "5555555555",
"business_number": null,
"subscribed": false,
"external_user_id": null,
"created_at": "2025-07-31T16:51:04.010Z",
"updated_at": "2025-07-31T16:51:04.010Z"
},
"links": {
"customer": ""
},
"relationships": {
"site": {
"data": {
"id": "2",
"type": "sites"
}
}
}
},
{
"id": "0",
"type": "contact_tags",
"attributes": {
"name": "Tag"
},
"relationships": {
"site": {
"data": {
"id": "2",
"type": "sites"
}
}
}
}
]
The actual payloads are sent to the target_url
as a POST request with the following JSON body:
{
"id": "hash_id",
"event": "tag_removed",
"payload": [],
}
The payload
array is the sample response above
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.