Survey Monkey 中是否有任何 API 将现有收集器回收到新电子邮件 ID?
Is there any API in Survey Monkey which recycles an existing collector to new email IDs?
我们在他们的文档页面上有两个 API,用于向目标收件人发送电子邮件。他们是:
- https://developer.surveymonkey.com/docs/methods/create_flow/
- https://developer.surveymonkey.com/docs/methods/send_flow/
但是 none 他们重用现有的收集器来将邮件发送给新的收件人。有没有什么API可以只用来发邮件而不是重新创建一个收集器的?
每次我们发送新调查时都必须派新的收集器吗?
您记录的两个链接适用于旧的 V2 API,它们已被弃用。新的 API 文档是 here.
特别是,您正在寻找这些:
- https://developer.surveymonkey.com/api/v3/#collectors-id-messages
- https://developer.surveymonkey.com/api/v3/#collectors-id-messages-id-send
示例:
POST /v3/collectors/<collector_id>/messages
{
"type": "invite"
}
要创建新消息(添加可选的 subject/email 正文)然后:
POST /v3/collectors/<collector_id>/messages/<message_id>/send
{}
如果正文为空,它会安排您的电子邮件发送(您也可以设置一个日期来安排电子邮件在那个时间发送。
我们在他们的文档页面上有两个 API,用于向目标收件人发送电子邮件。他们是:
- https://developer.surveymonkey.com/docs/methods/create_flow/
- https://developer.surveymonkey.com/docs/methods/send_flow/
但是 none 他们重用现有的收集器来将邮件发送给新的收件人。有没有什么API可以只用来发邮件而不是重新创建一个收集器的?
每次我们发送新调查时都必须派新的收集器吗?
您记录的两个链接适用于旧的 V2 API,它们已被弃用。新的 API 文档是 here.
特别是,您正在寻找这些:
- https://developer.surveymonkey.com/api/v3/#collectors-id-messages
- https://developer.surveymonkey.com/api/v3/#collectors-id-messages-id-send
示例:
POST /v3/collectors/<collector_id>/messages
{
"type": "invite"
}
要创建新消息(添加可选的 subject/email 正文)然后:
POST /v3/collectors/<collector_id>/messages/<message_id>/send
{}
如果正文为空,它会安排您的电子邮件发送(您也可以设置一个日期来安排电子邮件在那个时间发送。