Skip to main content
GET
/
v1
/
webhooks
List webhook subscriptions
curl --request GET \
  --url https://openapi.genesy.ai/v1/webhooks \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "url": "<string>",
      "events": [
        "<string>"
      ],
      "campaignIds": [
        123
      ],
      "customFields": [
        "<string>"
      ],
      "enabled": true,
      "createdAt": "2023-12-25",
      "updatedAt": "2023-12-25",
      "hasSecret": true
    }
  ],
  "meta": {
    "page": 123,
    "pageSize": 123,
    "total": 123
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

page
string

Page number

pageSize
string

Items per page

Response

200 - application/json

Successful response with paginated webhooks

data
object[]
required
meta
object
required