Delete Domain
Deletes a specific custom domain from your account. This action is permanent and cannot be undone.
Endpoint
DELETE
v5/domain/{domain_id}
Requires authentication
Path Parameters
The domain to delete.
domain_id
string
required
The ID of the domain to delete.
Response
Returns a status object confirming the deletion.
result_ok
boolean
Whether the request succeeded.
status
string
Confirmation of the deletion. Returns
success when the domain was successfully removed.Examples
Request (cURL)
curl -X DELETE "https://api.alchemer.com/v5/domain/YOUR_DOMAIN_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
"result_ok": true,
"status": "success"
}