Verify an IP
POST https://{{host}}/edge-diagnostics/v1/verify-edge-ip
Verifies if an IP belongs to an edge server. For IPs verified positively, you can continue gathering diagnostic data with Request content with cURL, Get domain details with dig, or Test network connectivity with MTR operations. You can enter up to 10 IPs.
Body
PARAM
Key | Datatype | Required | Description |
accountSwitchKey
|
string | (Optional) For customers who manage more than one account, this [runs the operation from another account](https://techdocs.akamai.com/developer/docs/manage-many-accounts-with-one-api-client). The Identity and Access Management API provides a [list of available account switch keys](https://techdocs.akamai.com/iam-api/reference/get-client-account-switch-keys). |
HEADERS
Key | Datatype | Required | Description |
Content-Type
|
string | ||
Accept
|
string |
RESPONSES
status OK
{
"completedTime": "2022-02-01T17:40:32Z",
"createdBy": "szhang",
"createdTime": "2022-02-01T17:40:29Z",
"executionStatus": "SUCCESS",
"request": {
"ipAddresses": [
"192.0.2.9",
"192.0.2.0"
]
},
"results": [
{
"executionStatus": "SUCCESS",
"ipAddress": "192.0.2.9",
"isEdgeIp": false
},
{
"executionStatus": "SUCCESS",
"ipAddress": "192.0.2.0",
"isEdgeIp": false
}
]
} |
ENDPOINTS