Delete Survey Question
Deletes a specified question from a survey. This action is permanent and cannot be undone.
Endpoint
DELETE
v5/survey/{survey_id}/surveyquestion/{question_id}
Requires authentication
Path Parameters
Identifies the survey and question to be deleted.
survey_id
string
required
The ID of the survey that contains the question.
question_id
string
required
The ID of the survey question to delete.
Query Parameters
This endpoint does not accept additional query parameters beyond authentication credentials.
None
Response
Returns a status object confirming the deletion.
result_ok
boolean
Whether the request succeeded.
Examples
Note Deleting grid rows is not supported.
Request (cURL)
curl -X DELETE "https://api.alchemer.com/v5/survey/123456/surveyquestion/1?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
"result_ok": true
}