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 -X
GET "https://api.equinix.com/v1/orders/troubleticket/locations"
-H "Content-type: application/json"
-H "Authorization: Bearer qwErtY8zyW1abcdefGHI"
This is an example of a success message.
{
"locations": [
{
"ibx": "LD8",
"cages": []
},
{
"ibx": "MI1",
"cages": []
},
{
"ibx": "NY7",
"cages": []
}
]
}