Hidden fields available in webhook payload? | Community
Skip to main content
Answered

Hidden fields available in webhook payload?

  • January 28, 2021
  • 8 replies
  • 1415 views

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

@febula  As @Liz mentioned, they are. But looks like our example in the doc is missing them, sorry about that.

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
    ]
  }
}

 

View original

8 replies

Liz
Community Team
Forum|alt.badge.img+5
  • Tech Community Advocate
  • 14893 replies
  • January 28, 2021

Hi @febula . Welcome to our community! :) 

Hidden fields are available in the webhook payload. There’s an example of how the payloads appear here, but if you aren’t seeing the data in the webhook, you may need to publish the form and/or submit a test response to see them appear. 

Hope that helps!


picsoung
Typeform
Forum|alt.badge.img+5
  • Developer Advocate @ Typeform
  • 384 replies
  • Answer
  • January 28, 2021

@febula  As @Liz mentioned, they are. But looks like our example in the doc is missing them, sorry about that.

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
    ]
  }
}

 


  • Author
  • Explorer
  • 1 reply
  • January 29, 2021

@picsoung @Liz Thank you both!  Would be great if the docs mentioned this too.  :laughing:


Liz
Community Team
Forum|alt.badge.img+5
  • Tech Community Advocate
  • 14893 replies
  • January 29, 2021

@febula We’re working on updating the docs. :) Thank you for pointing this out!


  • Navigating the Land
  • 2 replies
  • November 19, 2021

Hi @picsoung @Liz 

I still don’t see hidden fields listed in the docs for the example webhook payload.

We have a form set up with 3 hidden fields and we’re not seeing them in our live webhook payloads either.

Are there any settings we need to enable to send hidden fields over a webhook and any ETA on updating the docs?

Thanks,

Georges


Liz
Community Team
Forum|alt.badge.img+5
  • Tech Community Advocate
  • 14893 replies
  • November 19, 2021

Hi @georges Are the hidden fields being collected in your responses? If they’re not included in your responses, either, you’ll want to be sure that any changes to the form are public. 

I’d also suggest contacting our support team from your account email here so they can test the webhook and see why the data isn’t appearing. 


  • Navigating the Land
  • 2 replies
  • November 22, 2021

Hey @Liz, thanks for the quick reply.

 

Yeah, we are seeing the hidden field values in our Google Sheet through the native integration, but not seeing them in webhook payloads. The “hidden” part of the payload isn’t there, just definition and answers.


Liz
Community Team
Forum|alt.badge.img+5
  • Tech Community Advocate
  • 14893 replies
  • November 22, 2021

Hm, I would definitely suggest contacting our support team from your account email here so they can test the webhook and see why the data isn’t appearing, @georges , if you haven’t already.