REST API - get
com.vmware.cis.session
get
POST /com/vmware/cis/session?~action=get |
Returns information about the current session. This operation expects a valid session identifier to be supplied.
A side effect of invoking this operation may be a change to the session's last accessed time to the current time if this is supported by the session implementation. Invoking any other operation in the API will also update the session's last accessed time.
This API is meant to serve the needs of various front end projects that may want to display the name of the user. Examples of this include various web based user interfaces and logging facilities.
- Request:
-
- Representations:
- Parameters:
- None
- Response:
-
- Representations:
{
"value": {
"created_time": "2013-06-06T22:13:05",
"last_accessed_time": "2013-06-06T22:13:05",
"user": "string"
}
}<?xml version="1.0" ?>
<ns0:Get-Result xmlns:ns0="http://vmware.com/cis/session" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<value>
<last_accessed_time>2013-06-06T22:13:05</last_accessed_time>
<created_time>2013-06-06T22:13:05</created_time>
<user>string</user>
</value>
</ns0:Get-Result>- Parameters:
Name Type Required Description result info Yes Information about the session. - Errors:
-
Type Description HTTP Status Code unauthenticated if the session id is missing from the request or the corresponding session object cannot be found. 401 service_unavailable if session retrieval fails due to server specific issues e.g. connection to back end component is failing. Due to the security nature of this API further details will not be disclosed in the error. Please refer to component health information, administrative logs and product specific documentation for possible causes. 503
Copyright © 2014. All Rights Reserved.