Tag ('add', 'delete')

Subscription 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"
}'

Event payload

{  
  "entity_name": "tag",  
  "event_type": "add/delete",  
  "data": {  
    "name": "jul"  
    "business_id": 123  
    "clients":[client1_id, client2_id, ...]  
  }  
}