Webhooks Reference
How webhooks work
Payload format
{
"event": "form.submission",
"formId": "clxyz...",
"data": {
"wallet": "0xabc...def",
"ensName": "vitalik.eth",
"answers": [
{
"questionId": "q_abc",
"questionLabel": "What is your name?",
"value": "Alice"
},
{
"questionId": "q_def",
"questionLabel": "Rate your experience",
"value": "5"
}
],
"submittedAt": "2026-04-01T14:32:00.000Z"
},
"timestamp": "2026-04-01T14:32:01.000Z"
}Payload fields
Field
Type
Description
Signature verification
Node.js example
Python example
Managing webhooks
In the dashboard
Via the API
Create a webhook
Field
Type
Required
Description
Update a webhook
Field
Type
Description
Delete a webhook
Best practices
Last updated
Was this helpful?