GET
/
account
/
ippool
/
{ippool_id}
Get a Specific IPPool
curl --request GET \
  --url https://api.sendpost.io/api/v1/account/ippool/{ippool_id} \
  --header 'X-Account-ApiKey: <api-key>'
{
  "id": 74,
  "name": "Transactional",
  "created": 1567512491586102000,
  "overflowPool": true,
  "ips": [],
  "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
    },
    {
      "id": 1,
      "name": "sendgrid",
      "type": 1,
      "domain": "",
      "endpoint": "",
      "key": "",
      "secret": "your_api_key",
      "port": 0,
      "oauthToken": "",
      "retryTime": 0,
      "created": 1597511124701000
    }
  ],
  "routingStrategy": 0,
  "routingMetaData": "{}"
}

Authorizations

X-Account-ApiKey
string
header
required

This api key can be used for all account level operations

Path Parameters

ippool_id
integer
required

The ID of the IPPool whose information you want to retrieve

Example:

74

Response

200
application/json

Details of a specific IPPool

The response is of type object.