Create a Webhook
Create a webhook with the provided details.
POST /integrations/create-webhook/
Headers
| Name | Value |
|---|---|
| Authorization | Bearer Base64Encoded(Client ID:Client Secret) |
| Content-Type | application/json |
Payload
Response
{
"success": true,
"message": "Successfully created webhook for the event",
"data": {
"id": 123,
"event": "call.status",
"active": true,
"callback_url": "CALLBACK_URL",
"created_at": "",
"updated_at": ""
}
}