GET
/
webhooks
/
{webhookId}
/
events
curl --request GET \
  --url https://api.tally.so/webhooks/{webhookId}/events \
  --header 'Authorization: Bearer <token>'
{
  "page": 123,
  "limit": 123,
  "hasMore": true,
  "totalNumberOfEvents": 123,
  "events": [
    {
      "id": "<string>",
      "webhookId": "<string>",
      "webhookUrl": "<string>",
      "eventType": "FORM_RESPONSE",
      "deliveryStatus": "QUEUED",
      "statusCode": 123,
      "response": "<string>",
      "retry": 123,
      "payload": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

webhookId
string
required

The ID of the webhook

Query Parameters

page
number

Page number for pagination (default: 1)

Response

200
application/json

List of webhook events

The response is of type object.