Add domain to suppression list
Description
Adds an email domain to a specified suppression list.
Request URL
Method: POST
https://example.com/api/v1.1/suppresses/domain_add
Request parameters
Parameter | Type | Example | Required | Description |
---|---|---|---|---|
token | string | "abcdefghijklmnqrstuvwxyz" | Yes | API token |
domain | string | "example.com" | Yes | Email domain |
format | string | "json" | No | Response data format. By default – json |
id | int | 1 | Yes | Suppression list ID |
Request example
- JSON
- XML
{
"token": "abcdefghijklmnqrstuvwxyz",
"domain": "example.com",
"id": 1
}
<xml>
<token>abcdefghijklmnqrstuvwxyz</token>
<domain>example.com</domain>
<id>1</id>
</xml>
Response example
- JSON
- XML
{
"data": {
"example.com": true
},
"error": 0,
"error_text": "Successful operation"
}
<xml>
<data>
<example.com>false</example.com>
</data>
<error>0</error>
<error_text>Successful operation</error_text>
</xml>
Response parameters
Parameter | Type | Description |
---|---|---|
error | int | Error code |
error_text | string | Error text |