cXML Webhook
Update cXML webhook
Updates an cXML Webhook by ID
Permissions
The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice, Messaging, Fax, or Video.
Learn more about API scopes.
patch/api/fabric/resources/cxml_webhooks/{id}
Path parameters
idstring uuid required
Universal Unique Identifier.
Unique ID of a CXML Webhook.
Request body
Example request
{
"name": "My CXML Webhook",
"primary_request_url": "https://primary.com",
"fallback_request_url": "https://fallback.com",
"status_callback_url": "https://callback.com"
}Response
The request has succeeded.
Example response
{
"display_name": "Booking Assistant",
"type": "cxml_webhook",
"created_at": "2024-05-06T12:20:00Z",
"updated_at": "2024-05-06T12:20:00Z",
"cxml_webhook": {
"name": "My CXML Webhook",
"primary_request_url": "https://primary.com",
"fallback_request_url": "https://fallback.com",
"status_callback_url": "https://callback.com"
}
}