This API is used to obtain the keystone API version information.
GET /
Example request
curl -i -k -X GET https://sample.domain.com/
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
versions |
Yes |
Object |
Keystone API version information. |
values |
Yes |
Array |
Keystone API version list. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
status |
Yes |
String |
Version status. |
updated |
Yes |
String |
Last version update time. |
media-types |
Yes |
Array |
Version-supported message format. |
id |
Yes |
String |
Version, for example, v3.0. |
links |
Yes |
Array |
Version resource link. |
{ "versions": { "values": [ { "media-types": [ { "type": "application/vnd.openstack.identity-v3+json", "base": "application/json" } ], "links": [ { "rel": "self", "href": "https://sample.domain.com/v3/" } ], "id": "v3.6", "updated": "2016-04-04T00:00:00Z", "status": "stable" } ] } }
Status Code |
Description |
---|---|
300 |
The request is successful. |
400 |
The server failed to process the request. |
404 |
The requested resource cannot be found. |
503 |
Service unavailable. |