Get API link info
POST /api/v1 HTTP/1.1
- Response structure
| Path | Type | Description |
|---|---|---|
links[].rel | String | Relative name for api. Always 'info'. |
links[].href | String | Relative href for info request. |
- Example request
curl 'http://localhost:8080/api/v1' -i -X GET \
-H 'X-co-auth-token: 6a1306c1f9909b64eebe186ff5700131'
- Example response
HTTP/1.1 200 OK
X-co-request-id: MacILIuWsQl41iwMa3BMg0L6uZuRmr2T
Content-Type: application/json
Content-Length: 170
{
"links": [
{
"rel": "info",
"href": "http://localhost:8080/api/v1/info"
},
{
"rel": "apps",
"href": "http://localhost:8080/api/v1/apps"
}
]
}