Delete survey page

Delete Survey Page

Deletes a specified page from a survey. This action is permanent and cannot be undone. All questions on the page will also be deleted.

Endpoint

DELETE v5/survey/{survey_id}/surveypage/{page_id}

Requires authentication

Path Parameters

Identifies the survey and specific page to delete.

survey_id
string
required
The ID of the survey containing the page.
page_id
string
required
The ID of the page to delete.

Response

Returns a status object confirming the deletion.

result_ok
boolean
Whether the request succeeded.

Examples

Request (cURL)
curl -X DELETE "https://api.alchemer.com/v5/survey/YOUR_SURVEY_ID/surveypage/YOUR_PAGE_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true
}