delete_webhook
Remove a specific webhook from the Webex Messaging API by providing its unique ID, ensuring streamlined integration management.
Instructions
Delete a webhook by its ID from the Webex Messaging API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
webhookId | Yes | The unique identifier for the webhook to be deleted. |
Input Schema (JSON Schema)
{
"properties": {
"webhookId": {
"description": "The unique identifier for the webhook to be deleted.",
"type": "string"
}
},
"required": [
"webhookId"
],
"type": "object"
}