Deletes an email from suppression list (only records with is_deletable=true). If there are no entries of this email in the suppression list, API error 3003 is returned. If such entries exist but no one can be deleted, API error 3004 is returned. If daily limit of deletes exceeded, API error 906 is returned.
https://dns-name/suppression/delete
Request Body
POST https://dns-name/suppression/delete
Content-Type: application/json
X-API-KEY: Value
{
"email": "string"
}
Request Parameters
Name | Type | Description |
---|---|---|
STRING REQUIRED | An email to delete from suppression list |
Response Body
{
"status": "string"
}
HTTP Code 200:
Email has been deleted from the suppression list |
Response Parameters
Name | Type | Description |
---|---|---|
status | STRING REQUIRED | “Success” string |
HTTP Code default:
Error occurred |
{
"status": "string",
"code": 0,
"message": "string"
}
Name | Type | Description |
---|---|---|
status | STRING REQUIRED | “Error” string |
message | STRING REQUIRED | Human-readable error message in English |
code | INTEGER REQUIRED | API Error code |