Facebook
LinkedIn
YouTube
Getting Started
Authentication
Authentication
  • V2 Authentication (Deprecated)
  • V3 Authentication
V2 API Documentation (Deprecated)V3 API Documentation
Dialer SDK
Getting Started
Authentication
Authentication
  • V2 Authentication (Deprecated)
  • V3 Authentication
V2 API Documentation (Deprecated)V3 API Documentation
Dialer SDK
  1. Subscriptions
  • Platform
    • Users
      • List Users
      • Create User
      • Get User Details
      • Update User
      • Partial Update User
      • Delete User
    • Groups
      • Get Group Tree
      • List Child Groups
      • Get Group Details
      • List Groups
      • Get Org Unit Hierarchy
      • Update Group
      • Partial Update Group
      • Delete Group
      • Create Group
    • Webhooks
      • Create Webhook
      • Get Webhook Details
      • List Webhooks
      • Update Webhook
      • Partial Update Webhook
      • Delete Webhook
    • Media Prompts
      • List Prompts
      • Get Prompt by ID
      • Upload Prompt
      • Delete Prompt
  • AI Voice Agents
    • List AI Voice Agents
      GET
    • Get Agent Details
      GET
    • Delete Agent
      DELETE
  • Phone Numbers
    • Assigned Numbers
      GET
    • Provisioned Numbers
      GET
    • Reserved Numbers
      DELETE
    • Phone Numbers
      POST
    • Available Numbers
      GET
  • Provisioned Routes
    • List Provisioned Routes
      GET
    • Create Provisioned Route
      POST
    • Get Provisioned Route Details
      GET
    • Delete Provisioned Route
      DELETE
    • Update Provisioned Route
      PUT
    • Partial Update Provisioned Route
      PATCH
  • SMS Broadcasts
    • List Broadcasts
      GET
    • Create Broadcast
      POST
    • Get Broadcast Details
      GET
    • Update Broadcast
      PUT
    • Partial Update Broadcast
      PATCH
    • Delete Broadcast
      DELETE
  • Conversation
    • Calls
      • Get Calls List
      • Get Call By ID
      • Email Call Data
      • Move Call to Another Group
      • Add Notes to Calls
      • Upload Call Recording
      • Add Tags to Call
    • SMS
      • Get SMS Conversations
      • Get SMS Conversation By ID
    • Opportunity Recovery
      • Get Conversations By Custom Insights
    • Agent Performance
      • Get Agent Performance Metrics
    • Attribution Engine
      • Get Marketing Attribution Data
  • Blacklist
    • List blacklisted numbers
    • Add numbers to blacklist
    • Delete numbers from blacklist
  • Call Action Templates
    • Create Call Action Template
    • Update Call Action Template
  • Campaigns
    • List Campaigns
    • Create Campaign
    • Get Campaign Details
    • Update Campaign
    • Partial Update Campaign
    • Delete Campaign
  • Custom Insights
    • Get Custom Insights
    • Create New Custom Insight
    • Get Custom Insight By Id
    • Update Custom Insight
    • Partial Update Custom Insight
    • Delete Custom Insight
  • Custom Source
    • Get Custom Sources
    • Create Custom Source
    • Delete Custom Sources (Single or Multiple)
  • DNI
    • List DNI Settings
    • Update DNI Setting
    • Delete DNI Setting
    • Create DNI Setting
  • Geo Locations
    • List Geo Locations
    • Create Geo Location
    • Get Geo Location
    • Update Geo Location
    • Partially Update Geo Location
    • Delete Geo Location
    • List Geo Location Routes
    • Create Geo Location Route
    • Get Geo Location Route
    • Update Geo Location Route
    • Partially Update Geo Location Route
    • Delete Geo Location Route
    • Import Geo Location Routes from CSV
  • Insights
    • List Insights
    • Create Insight
    • Get Insight Details
    • Delete Insight
  • Scorecards
    • List Scorecards
    • Get Scored Calls Report
    • Create Scorecard
    • Add or Update Call Title
    • Duplicate Scorecard
    • Archive Scorecard
  • Miscellaneous
    • List Ad Sources
    • List Industries
    • List Tags
    • Create Tag
    • Update Tag
    • Delete Tag
  • Subscriptions
    • List Webhook Subscriptions
      GET
    • Create Webhook Subscription
      POST
    • Delete Webhook Subscription
      DELETE
  1. Subscriptions

Create Webhook Subscription

POST
https://platform-api.convirza.com/v3/subscriptions
Subscriptions
Last modified:2026-08-14 10:29:00
Creates a new webhook subscription to receive push notifications when entity events occur.
How it works
Subscribe to events (add, update, delete) for any entity type (Users, Groups, Calls, Numbers, etc.). When the subscribed event occurs, a JSON payload is automatically sent to your webhook endpoint.
⚠️ Endpoint Validation
During creation, a test payload is sent to your endpoint URL to verify it is reachable. The endpoint must:
Use HTTPS protocol
Respond within 5 seconds
Return HTTP 2xx, 3xx, or 4xx status
If validation fails (5xx error, timeout, or network error), subscription creation is rejected with 400 Bad Request.
🔄 Automatic Retry & Disable
Failed webhook deliveries are automatically retried 3 times with exponential backoff. If all retries fail, the subscription is automatically disabled (status: inactive) and the account admin receives an email notification.
Required fields
subscription_name — Display name for this subscription
endpoint_url — Your HTTPS webhook URL where events will be sent
entity_type — Entity to subscribe to (Users, Groups, Calls, Numbers, Tags, etc.)
event_types — Array of events: ["add", "update", "delete"]
Optional fields
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)
Supported Entities
Users, Groups, Campaigns, Provisioned Route, Calls, Numbers, Tags, CustomSource, VoiceAgents, Insights, Scorecard, Broadcast, DNI, Blacklist, Call Action, Media Prompts, Webhooks
Event Payload Example
{
  "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": { ... }
  }
}

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢201
application/json
Subscription created successfully
Bodyapplication/json

🟠400
🟠401
🟠403
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
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"
}'
Response Response Example
201 - Example 1
{
    "code": 200,
    "message": "Success",
    "data": {},
    "request_id": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2026-01-20T12:34:56.789Z"
}
Modified at 2026-08-14 10:29:00
Previous
List Webhook Subscriptions
Next
Delete Webhook Subscription
Built with