Description
Show blacklist in spam filter.
Request URL
Mail API v1.0 GET /v1/emails/(uuid:email_id)/blacklist
Request Paramters
| Parameter | Value | Style | Type | Description |
|---|---|---|---|---|
| X-Auth-Token | - | header | string | User Token |
| email_id | - | URI | UUID | Email ID |
| offset(Optional) | - | query | int | The number of the transactions to start displaying with (Default:0) |
| limit(Optional) | - | query | int | The number of transactions for displaying (Default:1000) |
| sort_key(Optional) | target | query | string | Sort Key (Default:target) |
| sort_type(Optional) | asc/desc | query | string | Sort Order (Default:asc) |
Response Paramters
| Parameter | Value | Style | Type | Description |
|---|---|---|---|---|
| targets | - | - | list | - |
| target | - | plain | Declined Address | |
| total_count | - | plain | int | Total Count |
| current_count | - | plain | int | Current Count |
Request Json
This operation does not accept a request body.
Normal response codes
200 - Success
Error response codes
401 - Access Denied
404 - Not Found
Repeatable
Yes
Example
curl -i -X GET \ -H "Accept: application/json" \ -H "X-Auth-Token: 39be9f8d53044388b7f2e867eba8b140" \ https://mail-hosting.tyo1.cloud.z.com/v1/emails/00658145-9ed8-4468-847d-06ed0237966d/blacklist
HTTP/1.1 200 Success
Date: Tue, 09 Dec 2014 01:46:58 GMT
Server: Apache
Content-Length: 1003
Content-Type: application/json
{
"targets": [
{"target": "exmple01@example.com"},
{"target": "exmple02@example.com"},
{"target": "exmple03@example.com"}
],
"total_count":100,
"current_count":10
}