Delete Email Message
Deletes a specific email message from a survey campaign. This action is permanent and cannot be undone.
Endpoint
DELETE
v5/survey/{survey_id}/surveycampaign/{campaign_id}/emailmessage/{message_id}
Requires authentication
Path Parameters
Identifies the survey, campaign, and specific message to delete.
survey_id
string
required
The ID of the survey.
campaign_id
string
required
The ID of the survey campaign.
message_id
string
required
The ID of the email message 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/123456/surveycampaign/100000/emailmessage/128073?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
"result_ok": true
}