Skip to main content

Get API link info

POST /api/v1 HTTP/1.1
  1. Response structure
PathTypeDescription
links[].relStringRelative name for api. Always 'info'.
links[].hrefStringRelative href for info request.
  1. Example request
curl 'http://localhost:8080/api/v1' -i -X GET \
-H 'X-co-auth-token: 6a1306c1f9909b64eebe186ff5700131'
  1. 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"
}
]
}