{ "opencollection": "1.0.0", "info": { "name": "Stripe Accounts Account Webhook Endpoints API", "version": "2023-10-16" }, "items": [ { "info": { "name": "Webhook Endpoints", "type": "folder" }, "items": [ { "info": { "name": "GetWebhookEndpoints", "type": "http" }, "http": { "method": "GET", "url": "https://api.stripe.com/v1/webhook_endpoints", "params": [ { "name": "ending_before", "value": "", "type": "query", "description": "A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list." }, { "name": "expand", "value": "", "type": "query", "description": "Specifies which fields in the response should be expanded." }, { "name": "limit", "value": "", "type": "query", "description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10." }, { "name": "starting_after", "value": "", "type": "query", "description": "A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list." } ], "body": { "type": "form-urlencoded", "data": [] } }, "docs": "

Returns a list of your webhook endpoints.

" }, { "info": { "name": "PostWebhookEndpoints", "type": "http" }, "http": { "method": "POST", "url": "https://api.stripe.com/v1/webhook_endpoints", "body": { "type": "form-urlencoded", "data": [] } }, "docs": "

A webhook endpoint must have a url and a list of enabled_events. You may optionally specify the Boolean connect parameter. If set to true, then a Connect webhook endpoint that notifies the specified url about events from all connected accounts is created; otherwise an account webhook endpoint that notifies the specified url only about events from your account is created. You can also create webhook endpoints in the Retrieves the webhook endpoint with the given ID.

" }, { "info": { "name": "PostWebhookEndpointsWebhookEndpoint", "type": "http" }, "http": { "method": "POST", "url": "https://api.stripe.com/v1/webhook_endpoints/:webhook_endpoint", "params": [ { "name": "webhook_endpoint", "value": "", "type": "path" } ], "body": { "type": "form-urlencoded", "data": [] } }, "docs": "

Updates the webhook endpoint. You may edit the url, the list of enabled_events, and the status of your endpoint.

" }, { "info": { "name": "DeleteWebhookEndpointsWebhookEndpoint", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.stripe.com/v1/webhook_endpoints/:webhook_endpoint", "params": [ { "name": "webhook_endpoint", "value": "", "type": "path" } ], "body": { "type": "form-urlencoded", "data": [] } }, "docs": "

You can also delete webhook endpoints via the webhook endpoint management page of the Stripe dashboard.

" } ] } ], "bundled": true }