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": "{}"
}
Retrieves details of a specific IPPool based on its ID.
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": "{}"
}
This api key can be used for all account level operations
The ID of the IPPool whose information you want to retrieve
74
Details of a specific IPPool
The response is of type object
.