MCPBundler Docs
MCPBundler Docs
Volver al marketplacePrimeros PasosAutenticacionTutorial - De un Bundle a un Agente Conectado
API Reference
Agent A2A Tools
Agent Channels
Agent Configuration (Staging)
Agent Configuration (Versions)
Agent Tools
Agents
Auth
Billing
Bundler
Bundler Tool
Bundles
Call Campaigns
Catalog
Conversations
Credentials
Deployments
Discover
Embedding
Fleet
Knowledge Bases
LLM
MCP Listings
Media
OAuth Clients
OAuth2
Observability
Organisations
Realtime
Reviews
Roadmap
SCIM
STT
Suppression
Triggers
TTS
Users
Utils
Voices
Webhooks
Create Webhook EndpointDelete Webhook EndpointList Delivery AttemptsList Webhook EndpointsList Subscribable Event TypesSend Test PingUpdate Webhook Endpoint
Workflows
API ReferenceWebhooks

List Webhook Endpoints

GET
/v1/webhooks

List webhook endpoints visible to the caller (owned or org-member-visible).

org_id narrows the result to one organisation's endpoints. Without it, the provider's auth strategy restricts result.items to what the caller may see (owned or member-visible) under the shared page-size-100 cap that applies across every organisation the caller can see.

With org_id, that combined cap is the wrong tool: a caller visible to more than 100 endpoints total could otherwise have one organisation's endpoints truncated away before the org filter ever runs. Membership is asserted explicitly instead, then the org's own endpoints are fetched unpaginated - a result set naturally bounded by that org's own size.

Args: is_active: Optional exact-match filter on active/inactive status, applied identically in both branches above. created_at: Optional FHIR-style prefixed datetime filters on creation time, applied identically in both branches above.

Authorization

OAuth2AuthorizationCodeBearer
AuthorizationBearer <token>

In: header

Query Parameters

org_id?|null
is_active?|

Filter by active/inactive status

created_at?array<string>|

Filter by creation time, FHIR-style prefixed datetime search

verify_locally?Verify Locally
Defaulttrue

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/webhooks"
[  {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "target_url": "string",    "is_active": true,    "description": "string",    "event_types": [      "string"    ],    "created_at": "2019-08-24T14:15:22Z",    "updated_at": "2019-08-24T14:15:22Z"  }]
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

List Delivery Attempts

Previous Page

List Subscribable Event Types

Next Page