SurveyPage Sub-Object

The following API calls are currently available for the SurveyPage object:

For info on returned fields and example returns go to SurveyPage Returned Fields.

GET LIST - Get a list of all of your survey pages. View Example Return.

https://restapi.surveygizmo.com/v4/survey/123456/surveypage
ParametersExampleRequired
Authentication Credentialsapi_token=abcd12345&api_token_secret=abcd12345
True

GET SURVEYPAGE - Get information about a specified survey page. View Example Return.

https://restapi.surveygizmo.com/v4/survey/123456/surveypage/1
ParametersExampleRequired
Authentication Credentialsapi_token=abcd12345&api_token_secret=abcd12345
True

CREATE SURVEYPAGE - Create a new survey page. View Example Return.

https://restapi.surveygizmo.com/v4/survey/123456/surveypage?_method=PUT&title=Title&after=3
ParametersExampleRequired
Authentication Credentialsapi_token=abcd12345&api_token_secret=abcd12345
True
titleMy New PageTrue
descriptionPage description textFalse
afterID of page to followFalse
properties[hidden]trueFalse
properties[piped_from]ID of question to pipe fromFalse

UPDATE SURVEYPAGE - Update a specified survey page. View Example Return.

https://restapi.surveygizmo.com/v4/survey/123456/surveypage/3?_method=POST
ParametersExampleRequired
Authentication Credentialsapi_token=abcd12345&api_token_secret=abcd12345
True
titleMy New PageFalse
descriptionPage description textFalse
properties[hidden]trueFalse
properties[piped_from]ID of question to pipe fromFalse

DELETE SURVEYPAGE - Delete a specified survey page. View Example Return.

https://restapi.surveygizmo.com/v4/survey/123456/surveypage/3?_method=DELETE
ParametersExampleRequired
Authentication Credentialsapi_token=abcd12345&api_token_secret=abcd12345
True

Back to the Top