Skip to main content

Delete List

Delete a list from your easymail account.

Request

DELETE /lists/{uuid}

Path Parameters

ParameterTypeDescription
uuidstringList's UUID

Example Request

curl -X DELETE "https://email.easy.tools/api/v1/lists/list-uuid-123" \
-H "Authorization: Bearer YOUR_API_TOKEN"

Response

Success Response (204 No Content)

No response body.

Error Responses

Not Found Error (404)

{
"error": {
"code": "RESOURCE_NOT_FOUND",
"message": "List with uuid 'list-uuid-123' not found"
}
}