GET
/
accounts
/
sessions
curl --request GET \
  --url https://server.ownid.com/{appId}/accounts/sessions \
  --header 'Authorization: Bearer <token>'
[
  {
    "payload": {
      "preferences": {
        "theme": "dark",
        "resolution": "wide"
      }
    },
    "created": "2000-10-31T06:30:00.000Z",
    "timeout": 10000,
    "lastActive": "2000-10-31T06:30:00.000Z"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Successfully retrieved all session data.
created
string
required
timeout
integer
lastActive
string
payload
object