Skip to content

List webhook endpoints

Request

Returns a list of all configured webhook endpoints for your account.

Security
bearerAuth or basicAuth
Query
limitinteger, [ 25 .. 100 ]

Limit the number of webhook endpoints returned.

Default:25
pagestring

Specify the page of webhook endpoints returned.

Default:"1"
curl -i -X GET \
  'https://docs.resolvepay.com/_mock/partners-api/openapi/webhooks?limit=25&page=1' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

An object with an array of results containing up to the limit. If no subscriptions are found, the results array will be empty.

Bodyapplication/json
countinteger

Total number of webhook endpoint subscriptions

Example:3
pageinteger

Current page number

Example:1
limitinteger

Number of results per page

Example:25
resultsArray of objects(WebhookEndpoint)

Array of webhook endpoint objects. Each object represents one endpoint-topic subscription. If an endpoint is subscribed to multiple topics, it will appear multiple times in the array.

Response
{ "count": 3, "page": 1, "limit": 25, "results": [ {}, {}, {} ] }