MCPBundler Docs
MCPBundler Docs
Back to marketplaceGetting StartedAuthenticationTutorial - Bundle to Connected Agent
API Reference
Auth
Bundler
Bundles
Catalog
Deployments
Discover
LLM
MCP Listing Claims
MCP Listings
OAuth2
Observability
Organisations
Reviews
Roadmap
SCIM
Users
Utils
Vault
Webhooks
Create Webhook EndpointDelete Webhook EndpointList Delivery AttemptsList Webhook EndpointsSend Test PingUpdate Webhook Endpoint
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.

Authorization

OAuth2AuthorizationCodeBearer
AuthorizationBearer <token>

In: header

Query Parameters

org_id?|null
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

Send Test Ping

Next Page