Skip to main content

Read IP Address

Returns an IP address specified by the IP address guid.

GET
/ip_addresses/{guid}

Path Parameters

FieldRequiredType

guid

The guid of the IP address.

Required
String

Request sample

Language:shell

_10
curl -L -X GET 'https://int-api.mx.com/ip_addresses/{guid}' \
_10
-H 'Accept: application/vnd.mx.api.v1+json' \
_10
-H 'Authorization: Basic BASE_64_ENCODING_OF{client_id:api_key}'

Response sample

200
Language:json

_10
{
_10
"ip_address": {
_10
"created_at": "2024-09-04T16:07:40+00:00",
_10
"guid": "IPA-123",
_10
"ip_address": "1.2.3.4",
_10
"status": "PENDING",
_10
"updated_at": "2024-09-04T16:07:40+00:00"
_10
}
_10
}