cURL
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 } }
Retrieves a list of webhooks.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The page of results you would like to return.
The number of items to return per page. By default, 50 items will be returned.
Success
Show child attributes
The ID of the webhook.
The endpoint that will be called when the webhook is triggered.
An optional description of the purpose of the webhook.
The events that will trigger this webhook.
The connections for which this webhook will be triggered.
The unique identifier of the connection.
The name of the connection.