This API is used to obtain the information about the keystone API version 3.0.
GET /v3
curl -i -k -X GET https://sample.domain.com/v3
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
version |
Yes |
Object |
Keystone API version information. |
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. |
{ "version": { "status": "stable", "updated": "2016-04-04T00:00:00Z", "media-types": [ { "base": "application/json", "type": "application/vnd.openstack.identity-v3+json" } ], "id": "v3.6", "links": [ { "href": "https://sample.domain.com/v3/", "rel": "self" } ] } }
Status Code |
Description |
---|---|
200 |
The request is successful. |
400 |
The server failed to process the request. |
404 |
The requested resource cannot be found. |
503 |
Service unavailable. |