PATCH
/
webhooks
/
{webhookId}
curl --request PATCH \
  --url https://api.tally.so/webhooks/{webhookId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "formId": "<string>",
  "url": "<string>",
  "signingSecret": "<string>",
  "httpHeaders": [
    {
      "name": "<string>",
      "value": "<string>"
    }
  ],
  "eventTypes": [
    "FORM_RESPONSE"
  ],
  "isEnabled": true
}'

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 to update

Body

application/json

Response

204

Webhook updated successfully