Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

URL

Code Block
(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:

Code Block
[
    {
        "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"
    }
]