Events v2.Webhook
REGION.US

List Webhook Endpoints

Returns a list of Webhook Endpoints.

get/events/v2/webhook-endpoints

Query parameters

pageSizeinteger

The maximum number of items to return.

pageTokenstring

The next_page_token value returned from a previous List request, if any.

Response

A successful response.

nextPageTokenstring

Token to retrieve the next page of results, or empty if there are no more results in the list.

Example response

{
  "webhookEndpoints": [
    {
      "createdAt": "2022-11-30T15:27:59Z",
      "description": "Alice's webhook",
      "disabled": false,
      "enabledEvents": [
        "refresh:finished"
      ],
      "id": "d8f37f7d19c240abb4ef5d5dbebae4ef",
      "updatedAt": "2022-11-30T15:27:59Z",
      "url": "https://endpoint.example.com/"
    }
  ]
}

Changes