Operational Units
Get Operational Units
GET /internetAccess/v1/operationalUnits | |
---|---|
Method | GET |
Endpoint | /internetAccess/v1/operationalUnits |
Headers | Authorization |
Path Parameters | Not applicable |
Query Parameters | location.ibx, offset, limit |
Body Parameters | Not applicable |
This API request returns information on the legal entity operating the specified IBX data center.
Note that by ordering Equinix Internet Access service instance you enter a legal agreement with the entity that operates a given IBX data center.
Sample curl request
Copy
curl -X GET 'https://api.equinix.com/internetAccess/v1/operationalUnits?location.ibx=DC5'
-H 'authorization: Bearer qwErtY8zyW1abcdefGHI'
Query parameters
Parameter
|
Description |
---|---|
location.ibx string REQUIRED |
IBX data center identifier. Applicable values: Use the Get IBX Data Centers API request to retrieve IBX data centers where Equinix Internet Access is available. Example: DC5 |
offset integer OPTIONAL |
Index of the first item returned in the response. Default value: 0 |
limit integer OPTIONAL |
Maximum number of items returned per page. Default value: 50 |
Sample response
Copy
{
"pagination": {
"offset": 0,
"limit": 50,
"total": 1
},
"data": [
{
"name": "EQUINIX - US",
"address": {
"address1": "Equinix LLC, on behalf of itself and its U.S. Affiliates",
"address2": "One Lagoon Drive, 4th Floor",
"city": "Redwood City",
"countryCode": "US",
"country": "United States",
"zipCode": "94065"
},
"location": {
"ibx": "DC5",
"metroCode": "DC"
}
}
]
}
Response payload body description
Parameter
|
Description |
---|---|
pagination
object |
Data set pagination information. |
offset
integer |
Index of the first item returned in the response. |
limit
integer |
Maximum number of items returned per page. |
total
integer |
Total number of items. |
data
array[object] |
Data set containing legal entities that operate a given IBX data center. |
name
string |
Name of operational unit. Example: EQUINIX - US |
address
object |
Address details of operational unit. |
address1
string |
First line of address. Example: Equinix LLC, on behalf of itself and its U.S. Affiliates |
address2
string |
Second line of address. Example: One Lagoon Drive, 4th Floor |
city
string |
City. Example: Redwood City |
countryCode
string |
Country code. Example: US |
country
string |
Country name. Example: United States |
zipCode
string |
Zip code. Example: 94065 |
location
object |
IBX location information. |
ibx
string |
IBX data center identifier. Example: DC5 |
metroCode
string |
Metropolitan area identifier. Example: DC |