POST
/
v1
/
api
/
webhook
/
create
curl --request POST \
  --url https://api.fillout.com/v1/api/v1/api/webhook/create \
  --header 'Content-Type: application/json' \
  --data '{
  "formId": "<string>",
  "url": "<string>"
}'
{
	"id": 12345
}

Request

Body parameters

formId
string
required

The public identifier of the form for which you want to retrieve submissions. This should be a string.

url
string
required

The endpoint where you’d like to listen for submissions

{
	"id": 12345
}

Once subscribed, your webhook will receive submissions in the same format as the entries in the responses list from the /submissions endpoint above.