GET
/
v2
/
webhooks
curl --request GET \
  --url https://api.usecloudpress.com/v2/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "endpoint": "<string>",
      "description": "<string>",
      "events": [
        "<string>"
      ],
      "connections": [
        {
          "id": 123,
          "name": "<string>"
        }
      ]
    }
  ],
  "pagination": {
    "pageCount": 123,
    "pageNo": 123,
    "pageSize": 123,
    "totalRecordCount": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

pageNo
integer | null

The page of results you would like to return.

pageSize
integer | null

The number of items to return per page. By default, 50 items will be returned.

Response

200
application/json
Success
items
object[]

Describes a webhook.

pagination
object