Are Hidden fields available in webhook payload?
for example, I’m passing @user_id as a hidden field to the embed, then want the webhook to fire and include @user_id in the payload
Thanks!
Are Hidden fields available in webhook payload?
for example, I’m passing @user_id as a hidden field to the embed, then want the webhook to fire and include @user_id in the payload
Thanks!
Best answer by picsoung
You will find them under the “hidden” property not in “answers”.
Example
{
"event_id": "a_ramdom_string",
"event_type": "form_response",
"form_response": {
"form_id": "your_form_id",
"token": "another_ramdom_string",
"landed_at": "2021-01-28T20:29:43Z",
"submitted_at": "2021-01-28T20:29:43Z",
"hidden": {
"user_id": "hidden_value"
},
"definition": {
... all the questions in your form
},
"answers": [
... every answer to every single question answered
]
}
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.