调用 SurveyMonkey 的 send_flow API 出现意外错误
Calling send_flow API of SurveyMonkey is giving an unexpected error
尽管我的请求在 JSON body 中提供了所有必需的参数,但为什么会出现以下错误?
API : https://developer.surveymonkey.com/docs/methods/send_flow/
问题是您在收集器字段下有 id
。那不是允许的属性。 send_flow
创建一个新的收集器和电子邮件并将它们附加到现有调查,这样您就不能 select 一个已经存在的收集器。只需将其从您的有效载荷中删除,您就不会再收到该错误了。
{
"survey_id": "111237200",
"collector": {
"send": true,
"recipients": [{
...
}]
},
"email_message": {
"subject": "Ice and Fire event",
"reply_email": "sunil@ljhjhjk.com"
}
}
尽管我的请求在 JSON body 中提供了所有必需的参数,但为什么会出现以下错误?
API : https://developer.surveymonkey.com/docs/methods/send_flow/
问题是您在收集器字段下有 id
。那不是允许的属性。 send_flow
创建一个新的收集器和电子邮件并将它们附加到现有调查,这样您就不能 select 一个已经存在的收集器。只需将其从您的有效载荷中删除,您就不会再收到该错误了。
{
"survey_id": "111237200",
"collector": {
"send": true,
"recipients": [{
...
}]
},
"email_message": {
"subject": "Ice and Fire event",
"reply_email": "sunil@ljhjhjk.com"
}
}