Does Survey Monkey Have any API to Save User Information, I want to save visitor name and email when he start the survey

时间:2017-10-12 09:47:10

标签: surveymonkey

I want to save visitor information into survey monkey dashboard for analytics purpose. Not sure how I can do this. We get the user information from FB like user name and email, when user click on start the survey button I want to save this information. Can anyone Help on this or this is possible using surveymonkey API.

1 个答案:

答案 0 :(得分:0)

您可能会在联系人列表中store them as a contact

示例:

POST / v3 / contacts

{
   "first_name": "test",
   "last_name": "example",
   "email": "test@example.com"
}

对于联系人,他们通过电子邮件是唯一的,因此如果您尝试为同一用户创建另一个联系人,它应该覆盖前一个联系人。您可以在help center中查看更多联系人。