cguardia/questions

Prevent sending requests to the central survey-js server

Opened this issue · 0 comments

Defining the survey_id and survey_post_id arguments when creating the questions:Survey results in interstep communication with the server api.surveyjs.io.

Specifying survey_id attempts to retrieve the survey form:
https://api.surveyjs.io/public/v1/Survey/getSurvey?surveyId=123
If you specify survey_post_id, a post request is sent with the results of filling out the form:
https://api.surveyjs.io/public/v1/Survey/post/

Is there any way to send the form with these parameters to its own post handler? Apparently, the post request generated for the official api uses its own code to generate the request body. Is it possible to get the results of the form on its own side in the way that this data is defined in the survey-js framework? Perhaps the structure of the responses they generate is more correct than the one defined in the js-templates, I would like to be able to process the form results as defined by the framework developer.