Determine Secure Cabinet Availability
Authenticate - Submit your user credentials, Client ID, and Client Secret for OAuth2 authentication. Refer to API Authentication for instructions on how to call the OAuth API to validate and authenticate your credentials.
To get the product availability for the specified billing account, send a GET
request to the /securecabinet/v1/availability/{accountNumber}
endpoint. Specify the account number in the path of the request.
curl -X GET 'https://api.equinix.com/securecabinet/v1/availability/{account_number}'
-H 'authorization: Bearer <token>'
Sample Response:
[
{
"ibx": "CH1",
"maximumNumberOfCabinetsToOrder": 2,
"minimumDrawCapacityPerCabinet": 5,
"maximumDrawCapacityPerCabinet": 5,
"cabinetDimensions": {
"width": {
"value": 482,
"unit": "MILLIMETER"
},
"depth": {
"value": 482,
"unit": "MILLIMETER"
},
"height": {
"value": 482,
"unit": "MILLIMETER"
}
},
"acCircuitConfiguration": {
"voltage": 220,
"soldAmperage": 8.9,
"phase": "SINGLE",
"receptacle": "IEC 60309 1P+N+E"
},
"pduConfiguration": {
"model": "UU30009L"
},
"fabricPortSpeed": "SPEED_1_GBPS"
}
]
For a full list of response fields, see the API Reference.