list_webhooks
Retrieve all organization-wide webhooks from the Webex MCP Server, with options to limit results by maximum count or ownership scope.
Instructions
List all webhooks for the organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max | No | Limit the maximum number of webhooks in the response. | |
ownedBy | No | Limit the result list to organization-wide webhooks. |
Input Schema (JSON Schema)
{
"properties": {
"max": {
"description": "Limit the maximum number of webhooks in the response.",
"type": "integer"
},
"ownedBy": {
"description": "Limit the result list to organization-wide webhooks.",
"enum": [
"org"
],
"type": "string"
}
},
"required": [],
"type": "object"
}