Skip to main content
GET
/
api
/
v1
/
webhooks
List Webhooks
curl --request GET \
  --url https://api.example.com/api/v1/webhooks \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "user_id": "<string>",
    "url": "<string>",
    "is_active": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authentication

✅ Organization User (CustomerEmployee)
❌ Delegated User (EndUser)
✅ Service Account

Required Permissions

Webhooks:Read: Always required.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 - application/json

Successful Response

id
integer
required
user_id
string
required
url
string
required
is_active
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time> | null