Skip to main content
List webhooks
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"
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Obtain a Bearer token via the Create access token endpoint using the OAuth2 client credentials flow.

Query Parameters

page
integer
default:1

Page number for pagination (defaults to 1).

Required range: x >= 1

Response

A paginated list of webhooks.

pagination
object
data
object[]