Surveymonkey API v3中的respondent_id在哪里?

时间:2016-12-19 17:05:29

标签: surveymonkey

页面在 https://help.surveymonkey.com/articles/en_US/kb/Transitioning-to-SurveyMonkey-s-v3-API

说那是什么

POST get_respondent_list

现在是

获取/调查/ {id} /回复或获取/收集者/ {id} /回复

但是回复没有受访者ID。

https://developer.surveymonkey.com/api/v3/?python#surveys-id-responses-bulk

他们在哪里?

1 个答案:

答案 0 :(得分:0)

受访者ID在正文中标记为id。 {V3}在API V3中被称为respondent_id,响应与受访者之间没有区别。

例如在列表中:

response_id

或详情,

/v3/surveys/<survey_id>/responses
{
  "per_page": 50,
  "total": 10,
  "data": [
    {
      "href": "...",
      "id": "<respondent_id>"
    },
    ...
  ]
}
相关问题