Can I use SurveyMonkey APIs with a custom Front end for my website? Example - I create a page add questions and the make a API call to add question to the survey. Send the link to a user and fetch the survey to display on the page and submit the response via API call.
Asked
Active
Viewed 268 times
1 Answers
0
I'm not sure your exact question, but the API docs are here which can explain how to do all the things you want to do.
Creating surveys here
POST /v3/surveys
Creating pages here
POST /v3/surveys/{survey_id}/pages/
Creating questions here
POST /v3/surveys/{survey_id}/pages/{page_id}/questions
Creating responses here
POST /v3/collectors/{collector_id}/responses
Hopefully that helps you get started.

General Kandalaft
- 2,215
- 2
- 18
- 25