Get Current Sessions

Get Current Sessions

List all sessions for current user

Request
URI
GET
https://{api_host}/cloudapi/1.0.0/sessions
COPY
Query Parameters
integer
page
Required

Page to fetch, zero offset.

integer
pageSize
Required

Results per page to fetch.


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns Sessions of type(s) application/json;version=39.0
This response body class contains all of the following: Page , InlineSessions1
{
    "resultTotal": 0,
    "pageCount": 0,
    "page": 0,
    "pageSize": 0,
    "associations": [
        {
            "entityId": "string",
            "associationId": "string"
        }
    ],
    "values": [
        {
            "id": "urn:vcloud:session:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
            "site": {
                "name": "string",
                "id": "string"
            },
            "user": {
                "name": "string",
                "id": "string"
            },
            "org": {
                "name": "string",
                "id": "string"
            },
            "operatingOrg": {
                "name": "string",
                "id": "string"
            },
            "location": "string",
            "roles": [
                "string"
            ],
            "roleRefs": [
                {
                    "name": "string",
                    "id": "string"
                }
            ],
            "sessionIdleTimeoutMinutes": 0
        }
    ]
}