Query IP address ACL for a Delivery Domain
Query IP address validation ACL for a delivery domain.
Request
Request-Line
GET /lls/v1.0/authentication/ipAddress
Request Parameters
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| domain | String | Mandatory | Delivery domain name. |
Response
Response Body
| Parameter | Type | Required | Description |
|---|---|---|---|
| domain | String | Mandatory | Delivery domain name. |
| ipAddressWhiteList | Array | Mandatory | White List of IP addresses. IP network segments can be added. e.g. 127.0.0.1/24 indicates that the IP network segment ranges from 127.0.0.1 to 127.0.0.255. |
| ipAddressBlackList | Array | Mandatory | Black List of IP addresses. IP network segments can be added. e.g. 127.0.0.1/24 indicates that the IP network segment ranges from 127.0.0.1 to 127.0.0.255. |
Status Codes, Error Codes and Error Messages
| Status Code | Error Code | Error Message |
|---|---|---|
| 400 | LLS.Domain.Invalid | Domain name invalid. |
Examples
Query IP address ACL for a delivery domain with white list
Request
GET /lls/v1.0/authentication/ipAddress?domain=ingest.example.com HTTP/1.1
Response Body
[
{
"domain": "ingest.example.com",
"ipAddressWhiteList": ["127.0.0.1/24", "192.168.1.0/24"],
"ipAddressBlackList": ["192.168.2.0/24", "192.168.3.128"]
}
]
Best Practices
Rate Limiting
Rate Limits
Rate limiting is posed upon the API, check API calls to comply with the rate limit below:
- 100 requests per minute
- 1000 requests per hour