cURL
curl --request GET \ --url https://app.simpledocs.com/api/v1/webhooks \ --header 'Authorization: Bearer <token>'
{ "pagination": { "current_page": 1, "per_page": 25, "total_pages": 3, "total_count": 72 }, "data": [ { "id": "<string>", "type": "webhook", "attributes": { "name": "Salesforce Integration", "url": "https://example.com/webhooks/simpledocs", "auth_type": "bearer", "events": [ "execution_complete" ] } } ] }
Returns a paginated list of webhooks registered for your company.
Obtain a Bearer token via the Create access token endpoint using the OAuth2 client credentials flow.
Page number for pagination (defaults to 1).
x >= 1
A paginated list of webhooks.
Show child attributes