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
1{2 "event_id": "a_ramdom_string",3 "event_type": "form_response",4 "form_response": {5 "form_id": "your_form_id",6 "token": "another_ramdom_string",7 "landed_at": "2021-01-28T20:29:43Z",8 "submitted_at": "2021-01-28T20:29:43Z",9 "hidden": {10 "user_id": "hidden_value"11 },12 "definition": {13 ... all the questions in your form14 },15 "answers": [16 ... every answer to every single question answered17 ]18 }19}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.