Accounts-account-email-domain-usernames-mailboxName-blackwhitelist:PUT

From Hostway API Documentation
Jump to: navigation, search

PUT /accounts/{account}/email/{domain}/usernames/{mailbox}/blackwhitelist

Adding/updating addresses to black/white list for a specific mailbox

Contents


Request

PUT /accounts/{account}/email/{domain}/usernames/{mailbox}/blackwhitelist

URI Parameters

account - string
domain - string
mailbox - string

Request Headers

Authorization - HTTP Authorization header [1]
The Authentication credentials of the client application.
Content-Type
Required. Set this header to application/json; charset=UTF-8

Request Body

{
    "list":[
        {
            "address":"{address}", 
            "type":"{type}"
        }
    ]
}
 

Parameters

address - string
Must be a valid email or domain address. Required.
type - string
One of W, B. Required.

Response

Status Code

204 No Content
Success
400 Bad Request
The format of the request body is invalid or the address does not meet the requirements.
401 Unauthorized
The supplied credentials are invalid or do not provide permissions for this operation.
404 Not Found
The domain name or the mailbox does not exist.


Examples

Failure adding address with missing required parameter

Request

PUT /accounts/account-number/email/test.com/usernames/test/blackwhitelist

{"list":[{"address":"mb1-white@somedomain.com"}]}
 

Response

400 Bad Request

{
    "badRequest": {
        "message": "POST data error",
        "code": 400,
        "details": {
            "list.0.type": "Required"
        }
    }
}
 

Failure adding address with not valid address and type

Request

PUT /accounts/account-number/email/test.com/usernames/test/blackwhitelist

{"list":[{"address":"somedomain.com","type":"A"}]}
 

Response

400 Bad Request

{
    "badRequest": {
        "message": "POST data error",
        "code": 400,
        "details": {
            "list.0.type": "\"A\" is not one of B, W",
            "list.0.address": "Invalid address format: somedomain.com"
        }
    }
}
 

Success adding mailbox addresses to blackwhitelist

Request

PUT /accounts/account-number/email/test.com/usernames/test/blackwhitelist

{
  "list":[
    {
      "address":"mb1-white@somedomain.com", 
      "type":"W"
    }, 
    {
      "address":"mb2-white@somedomain.com", 
      "type":"W" 
    }
  ]
}
 

Response

204 No Content
 

Success adding domain addresses to blackwhitelist

Request

PUT /accounts/account-number/email/test.com/usernames/test/blackwhitelist

{
   "list": [
      {
         "type": "W", 
         "address": "@domainaddr1.com"
      },
      {
         "type": "B", 
         "address": "@someotherdomain.com"
      }
   ]
}
 


blog comments powered by Disqus

Personal tools
Namespaces
Variants
Actions
APIs
Navigation
Toolbox