GET
/
webhooks
curl --request GET \
  --url https://api.tally.so/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "webhooks": [
    {
      "id": "<string>",
      "formId": "<string>",
      "url": "<string>",
      "signingSecret": "<string>",
      "httpHeaders": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ],
      "eventTypes": [
        "FORM_RESPONSE"
      ],
      "externalSubscriber": "<string>",
      "isEnabled": true,
      "lastSyncedAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "page": 123,
  "limit": 123,
  "hasMore": true,
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
number

Page number for pagination (default: 1)

Required range: x >= 1
limit
number

Number of webhooks per page (default: 25, max: 100)

Required range: 1 <= x <= 100

Response

200
application/json

List of webhooks

The response is of type object.