GET
/
account
/
api
/
v1
/
sessions
curl --request GET \
  --url https://svc.sandbox.anon.com/account/api/v1/sessions \
  --header 'Authorization: Bearer <token>'
{
  "sessions": [
    {
      "sessionId": "<string>",
      "app": "<string>",
      "appUser": {
        "id": "<string>",
        "email": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

appUserId
string | null

Filter by a particular user

Response

200 - application/json
Successful response

List of sessions

sessions
object[]
required