如何在隐藏字段中选择Typeform API?

时间:2018-08-17 11:02:02

标签: php curl typeform

我需要选择一个完整的表格

在文档中,这似乎是唯一的选择: https://api.typeform.com/forms/ {form_id} /响应

如何通过包含user_id的隐藏字段进行查询以获取特定用户的结果。在文档中找不到

2 个答案:

答案 0 :(得分:1)

这不完全是您要的,但是您是否尝试过使用query参数?

documentation说:

  

query(字符串):将请求限制为仅包含指定术语的响应。

从我的测试中,将在所有字段(包括隐藏字段)中搜索查询参数。

例如:

GET https://api.typeform.com/forms/{form_id}/responses?query=<user_id_expected_in_hidden_field>
Authorization: Bearer <access_token>

200 OK
Content-Type: application/json

{
  "total_items": N,
  "page_count": M,
  "items": [ {...}, ... ]
}

答案 1 :(得分:0)

您只需要添加一个要过滤的值即可。

例如

我想获得包含电话号码123456789的回复

https://api.typeform.com/forms/{form_id}/responses?query=123456789

希望获得帮助