Subscription to the tag add example:
curl --location --request POST 'https://api.vcita.biz/platform/v1/webhook/subscribe' \
--header 'Authorization: "Bearer API_TOKEN"'\
--header 'Content-Type: application/json' \
--data-raw '{
"event": "tag/add",
"target_url": "URL"
}'
Tag Add payload example
{
"entity_name": "tag",
"event_type": "add",
"data": {
"name": "jul"
"business_id": 123
"clients":[client1_id, client2_id, ...]
}
}