subscription_name — Display name for this subscriptionendpoint_url — Your HTTPS webhook URL where events will be sententity_type — Entity to subscribe to (Users, Groups, Calls, Numbers, Tags, etc.)event_types — Array of events: ["add", "update", "delete"]http_method — HTTP method for webhook delivery (default: POST)custom_headers — Custom headers to include in webhook requests (e.g., API keys)response_format — Response format: JSON or XML (default: JSON){
"key": "Users",
"event_type": "update",
"entity_id": 456,
"org_unit_id": 123,
"timestamp": "2026-05-25T10:30:00Z",
"data": {
"who_updated": {
"id": 789,
"name": "Admin User",
"email": "admin@example.com"
},
"what_updated": [
{
"field_name": "user_status",
"old_value": "active",
"new_value": "inactive"
}
],
"entity_data": { ... }
}
}curl --location 'https://platform-api.convirza.com/v3/subscriptions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"subscription_name": "User Activity Webhook",
"endpoint_url": "https://customer.com/webhooks/users",
"http_method": "POST",
"custom_headers": [
{
"header_name": "Authorization",
"header_value": "Bearer sk_live_123456"
}
],
"entity_type": "Users",
"event_types": [
"add",
"update",
"delete"
],
"response_format": "JSON"
}'{
"code": 200,
"message": "Success",
"data": {},
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2026-01-20T12:34:56.789Z"
}