200: Success
The 200 (Success) status code indicates that the HTTP request was successful. In a GET request, the response will contain an entity corresponding to the requested resource whereas, in a POST request, the response will contain an entity describing or containing the result of the action.
Code | 200 |
Description | Success. |
curl --request GET \
--url 'https://api.equinix.com/internetAccess/v1/accounts?operationalUnits.ibxs.ibx=SG1&project.projectId=123&offset=0&limit=50' \
--header 'authorization: Bearer REPLACE_BEARER_TOKEN'
This is an example of a success message.
{
"pagination": {
"offset": 0,
"limit": 20,
"total": 2,
"next": "string",
"previous": "string"
},
"data": [
{
"accountNumber": "100013200",
"accountName": "Web Henderson",
"billing": {
"signatureRequired": false,
"poExempted": true,
"poBearing": true
},
"operationalUnits": [
{
"ibxs": [
{
"ibx": "WA1"
}
],
"metros": [
{
"metroCode": "WA"
}
]
}
],
"orgId": "1232",
"organizationName": "Equinix, Inc."
}
]
}