目前有多个自定义数据字段?

时间:2015-10-13 08:11:39

标签: surveymonkey

https://developer.surveymonkey.com/mashery/send_flow似乎只注意到一个custom_id字段,但网站最多显示六个。这些是否可用于向未来添加数据?我们目前的整合需要另外一个领域。感谢

1 个答案:

答案 0 :(得分:1)

如果您希望将这些其他自定义字段存储在地址簿(https://www.surveymonkey.com/addressbook/)中,那么请注意,这些字段不适用于V2 API。将在下一版API中提供对它们的访问。它的发布日期尚未确定,所以我只能说它正在进行中。

如果您希望将其他自定义字段传输到电子邮件中,那么这是可能的。

示例:



{
  "survey_id": "########",
  "collector": {
      "type": "email",
      "name": "Test Collector",
      "send": true,
      "recipients": [
          {
              "email": "test@surveymonkey.com",
              "custom_id": "Custom Value 1",
              "recipient_attribute_values": ["Recipient Value 2", "Recipient Value 3"]
          }]
  },
  "email_message": {
      "reply_email": "test@surveymonkey.com",
      "body_text": "[SurveyLink] [RemoveLink] [FooterLink] [custom_1] [recipient_attribute_1] [recipient_attribute_2]"
  }
}