Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

The purpose of this method is to retrieve all users who are connected to Beebox. The method will list all users connected.

URL

(GET) /api/server/sessions?token=

PARAMETERS

Parameters are:

token

The session token obtained when connecting.

 

RESULTS

The method returns JSON and HTTP status 200. Other HTTP status values indicate an error.

EXAMPLE

A typical result may look like:

[
    {
        "connector": null,
        "connectorVersion": null,
        "lastAccess": "2099-03-05T12:10:13.2828681Z",
        "projectKey": "f21b5f07-a652-4a4e-8998-f988ff1b789c",
        "role": "Admin",
        "ipaddress": "212.66.68.000"
    },
    {
        "connector": "BeeboxUI",
        "connectorVersion": null,
        "lastAccess": "2099-03-05T12:07:51.4700492Z",
        "projectKey": null,
        "role": "Admin",
        "ipaddress": "212.66.68.000"
    }
]

  • No labels