How can i get hidden parameters ? What is the best practice ?
Answered
webhook parameter hidden
Best answer by picsoung
Hi
hidden fields values are sent in the webhook payload.
They should appear under the hidden section.
Example of payload
{
  "event_id": "01HNJ8X3DP7WKW2JRRPTYKG4Y9",
  "event_type": "form_response",
  "form_response": {
    "form_id": "vqOVSV4t",
    "token": "01HNJ8X3DP7WKW2JRRPTYKG4Y9",
    "landed_at": "2024-02-01T12:04:41Z",
    "submitted_at": "2024-02-01T12:04:41Z",
    "hidden": {
      "user_email":"jojo@lol.com”,
      "user_id":"abc123”,
    },
    "definition": {
    … whole structure of the form
    },
    "answers":[
    … answer to each question
    ]
}Â
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.