Delete Survey Option
Deletes a specified option from a survey question. This action is permanent and cannot be undone.
Endpoint
DELETE
v5/survey/{survey_id}/surveyquestion/{question_id}/surveyoption/{option_id}
Requires authentication
Path Parameters
Identifies the survey, question, and specific option to delete.
survey_id
string
required
The ID of the survey containing the question.
question_id
string
required
The ID of the question containing the option.
option_id
string
required
The ID (SKU) of the option 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/surveyquestion/YOUR_QUESTION_ID/surveyoption/YOUR_OPTION_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
"result_ok": true
}