我可以回复 API 的 Survey Monkey 调查吗?

Can I respond to a Survey Monkey survey by API?

我的 survey monkey 调查有一个页面有另一个布局。

我可以通过 API 发送此回复吗?

可以,请参阅 API 文档,网址为:

https://developer.surveymonkey.com/api/v3/#survey-responses

示例:

POST /v3/collectors/<collector_id>/responses
{
  "custom_variables": {
    "custvar_1": "one",
    "custvar_2": "two"
  },
  "pages": [{
    "id": "12345678",
    "questions": [
    {
        "answers": [{
            "choice_id": "12345678"
        }],
        "id": "12345678"
    }]
  }]
}

有关如何使用 API 的更多详细信息,请参阅文档。