List All Webhook Endpoints

Returns a list of existing webhook endpoints in sorted order where the most recently created endpoints show up first.

/v1/webhook_endpoints

GET https://api.uiza.sh/v1/webhook_endpoints

Query Parameters

NameTypeDescription

status

string

Indicates the current status of the webhook endpoint, either disabled or enabled.

page_token

string

The maximum number of objects to be returned, between 1 and 20.

page_size

string

The pagination cursor of the result page to be retrieved.

{
 "data": [
  {
   "id": "f0f207af-b338-4b7f-8d32-fe9cfa9566eb",
   "url": "https://webhook-test.com/live/created",
   "status": "enabled",
   "created_at": "2019-12-16T10:57:32Z",
   "updated_at": "2019-12-16T10:57:32Z"
  }
 ],
 "next_page_token": "eyJjcmVhdGVkX2F0IjoxNTc2MDA4NjkxMDAwLCJpZCI6IjAwNzVmZjcyLWE0ODYtNDg0Ni05Y2NjLWY1ZWU4YTA0MmQ0NSJ9"
}
Sample Request
curl -X GET 'https://api.uiza.sh/v1/webhook_endpoints' 
     -H 'Authorization: uap-c1ffbff4db954ddcb050c6af0b43ba56-41193b64' 

Last updated