Создайте новый ответ с помощью Survey Monkey REST API V3
Я пытаюсь создать новые ответы с помощью SurveyMonkey API, я следую этому документу, предоставленному SurveyMonkey: https://developer.surveymonkey.com/api/v3/?shell
и вот просьба, которую я делаю:
curl -i -X POST -H "Content-Type: application/json" -H "Authorization:bearer ACCESS_TOKEN" https://api.surveymonkey.com/v3/surveys/{suvey_id}/responses -d '{"custom_variables":{"custvar_1": "one", "custvar_2": "two"},"response_status": "completed","custom_value": "custom identifier for the response","date_created": "2015-10-06T12:56:55+00:00","ip_address": "127.0.0.1", "pages": [{"id": "{page_id}","questions": [{"answers": [{"text": "Sample Text Response"}], "id": "{questions_id}"}, {"answers": [{"choice_id": "{choice_id}"}], "id": "{questions_id}"}]}]}'
и я получаю ответ 404:
{"error": {"docs": "https://developer.surveymonkey.com/api/v3/#error-codes", "message": "There was an error retrieving the requested resource.", "id": "1020", "name": "Resource Not Found", "http_status_code": 404}}
Я проверил значения "choice_id", "questions_id", "page_id" и "survey_id", все они верны, но я все еще получаю 404, я полностью застрял в этой проблеме, любая помощь в этом отношении будет высоко ценится
Спасибо!