POST
/
webhook
/
create
Create a webhook
curl --request POST \
  --url https://api.fillout.com/v1/api/webhook/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "formId": "<string>",
  "url": "<string>"
}'
{
  "id": 123
}
Once subscribed, your webhook will receive submissions in the same format as the entries in the responses list from the /submissions endpoint.

Authorizations

Authorization
string
header
required

Enter your Fillout API key. Format: Bearer <api_key>

Body

application/json

Response

200 - application/json

Webhook created successfully

The response is of type object.