GET
/
account
/
ippool
Get All IPPools
curl --request GET \
  --url https://api.sendpost.io/api/v1/account/ippool \
  --header 'X-Account-ApiKey: <api-key>'
[
  {
    "id": 746,
    "name": "Transactional",
    "created": 1597511124804000,
    "ips": [
      {
        "id": 6,
        "publicIP": "3.238.19.86",
        "reverseDNSHostname": "sp0006.mtaspb.email",
        "type": 1,
        "created": 1597511124804000
      }
    ],
    "thirdPartySendingProviders": [
      {
        "id": 2,
        "name": "mailgun",
        "type": 2,
        "domain": "your_domain",
        "endpoint": "https://api.mailgun.net/v3",
        "key": "your_public_key",
        "secret": "your_private_key",
        "port": 0,
        "oauthToken": "",
        "retryTime": 0,
        "created": 1597511124704000
      }
    ],
    "routingStrategy": 0,
    "routingMetaData": "{}",
    "autoWarmupEnabled": false,
    "infraMonitor": true,
    "ipDomainWarmupStatus": null
  }
]

Authorizations

X-Account-ApiKey
string
header
required

This api key can be used for all account level operations

Query Parameters

limit
integer

Number of records to return per request

Example:

10

offset
integer

Number of initial records to skip

Example:

0

Case insensitive search against IPPool name

Example:

"Transactional"

Response

200
application/json

A list of IPPools

The response is of type object[].