Accounts-account-email-domain-blackwhitelist:PUT
From Hostway API Documentation
(Difference between revisions)
Mike.robski (Talk | contribs) m (1 revision: Release 103) |
Mike.robski (Talk | contribs) m (1 revision: Release 109) |
||
| (One intermediate revision by one user not shown) | |||
| Line 33: | Line 33: | ||
==== Parameters ==== | ==== Parameters ==== | ||
; address - ''string'' | ; address - ''string'' | ||
| − | : Must be a valid email address. Required. | + | : Must be a valid email or domain address. Required. |
; type - ''string'' | ; type - ''string'' | ||
: One of W, B. Required. | : One of W, B. Required. | ||
| − | |||
== Response == | == Response == | ||
| Line 98: | Line 97: | ||
"details": { | "details": { | ||
"list.0.type": "\"A\" is not one of B, W", | "list.0.type": "\"A\" is not one of B, W", | ||
| − | "list.0.address": "Invalid | + | "list.0.address": "Invalid address format: somedomain.com" |
} | } | ||
} | } | ||
| Line 104: | Line 103: | ||
</nowiki> | </nowiki> | ||
| − | === Success adding addresses to | + | === Success adding email addresses to blackwhitelist === |
'''Request''' | '''Request''' | ||
<nowiki> | <nowiki> | ||
| Line 115: | Line 114: | ||
<nowiki> | <nowiki> | ||
204 No Content | 204 No Content | ||
| + | </nowiki> | ||
| + | |||
| + | === Success adding domain addresses to blackwhitelist === | ||
| + | '''Request''' | ||
| + | <nowiki> | ||
| + | PUT /accounts/account-number/email/test.com/blackwhitelist | ||
| + | |||
| + | { | ||
| + | "list": [ | ||
| + | { | ||
| + | "type": "W", | ||
| + | "address": "@domainaddr1.com" | ||
| + | }, | ||
| + | { | ||
| + | "type": "B", | ||
| + | "address": "@someotherdomain.com" | ||
| + | } | ||
| + | ] | ||
| + | } | ||
</nowiki> | </nowiki> | ||
Latest revision as of 13:14, 24 July 2015
PUT /accounts/{account}/email/{domain}/blackwhitelist
Adding/updating addresses to black/white list for a specific domain
Contents |
Request
PUT /accounts/{account}/email/{domain}/blackwhitelist
URI Parameters
- account - string
- domain - 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 does not exist.
Examples
Failure adding address with missing required parameter
Request
PUT /accounts/account-number/email/test.com/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/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 email addresses to blackwhitelist
Request
PUT /accounts/account-number/email/test.com/blackwhitelist
{"list":[{"address":"mb1-white20150114-0113@somedomain.com", "type":"W"}, {"address":"mb2-white20150114-0113@somedomain.com", "type":"W"}] }
Response
204 No Content
Success adding domain addresses to blackwhitelist
Request
PUT /accounts/account-number/email/test.com/blackwhitelist
{
"list": [
{
"type": "W",
"address": "@domainaddr1.com"
},
{
"type": "B",
"address": "@someotherdomain.com"
}
]
}