List IP pools
GET/v1/ip-pool/list
Retrieve a list of IP pools with optional filtering
Request
Query Parameters
provider string
Possible values: [sparkpost]
Filter by Provider
page_token string
Page Token for pagination
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object
ip_pools
object[]
created_at string
deleted_at string
details
object
property name* any
pool_id string
provider string
next_page_token string
total_count integer
message string
success boolean
{
"data": {
"ip_pools": [
{
"created_at": "string",
"deleted_at": "string",
"details": {},
"pool_id": "string",
"provider": "string"
}
],
"next_page_token": "string",
"total_count": 0
},
"message": "IP pools listed successfully",
"success": true
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
details string
error string
success boolean
{
"details": "string",
"error": "string",
"success": false
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
details string
error string
success boolean
{
"details": "string",
"error": "string",
"success": false
}
Loading...