update_webhook
Modify a Webex webhook by updating its name, target URL, secret, or status using the provided webhook ID. Ensure real-time integration and automation with custom configurations.
Instructions
Update a webhook in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the webhook. | |
secret | Yes | The secret for the webhook. | |
status | Yes | The status of the webhook (e.g., active). | |
targetUrl | Yes | The target URL for the webhook. | |
webhookId | Yes | The unique identifier for the webhook. |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the webhook.",
"type": "string"
},
"secret": {
"description": "The secret for the webhook.",
"type": "string"
},
"status": {
"description": "The status of the webhook (e.g., active).",
"type": "string"
},
"targetUrl": {
"description": "The target URL for the webhook.",
"type": "string"
},
"webhookId": {
"description": "The unique identifier for the webhook.",
"type": "string"
}
},
"required": [
"webhookId",
"name",
"targetUrl",
"secret",
"status"
],
"type": "object"
}