List all webhooks for the configured Sinch Conversation API app
Lists all webhooks for your Sinch Conversation API app in table or JSON format.
/plugin marketplace add sinch/sinch-plugins/plugin install sinch-claude-plugin@sinch--format=json|tableapi/webhooks/List all webhooks configured for your Sinch Conversation API app.
--format / -f: Output format (json or table) - optional, defaults to table$ARGUMENTS
Parse and validate arguments from $ARGUMENTS:
--format is not provided, default to "table"Call mcp__sinch__sinch-mcp-configuration to get the current configuration and verify setup.
Use the Sinch Conversation API to list webhooks:
GET https://{region}.conversation.api.sinch.com/v1/projects/{projectId}/apps/{appId}/webhooksDisplay the results based on the requested format:
Handle errors gracefully:
/sinch-claude-plugin:sinch-mcp-setup to see setup instructions."List webhooks in table format:
/sinch-claude-plugin:api:webhooks:list
List webhooks in JSON format:
/sinch-claude-plugin:api:webhooks:list --format=json
GET /v1/projects/{projectId}/apps/{appId}/webhooks{
"webhooks": [
{
"id": "01E9DQJFPWGZ4N9XQ3FZ8Z8Z8Z",
"target": "https://example.com/webhook",
"target_type": "HTTP",
"triggers": ["MESSAGE_INBOUND", "MESSAGE_DELIVERY"],
"secret": "***",
"app_id": "01E9DQJFPWGZ4N9XQ3FZ8Z8Z8Z"
}
]
}