Skip to main content
GET
/
v1
/
auth
/
{app_id}
/
sessions
List all sessions
curl --request GET \
  --url https://{defaultHost}/v1/auth/{app_id}/sessions \
  --header 'X-Authorization: <api-key>'
{
  "sessions": [
    {
      "id": "<string>",
      "display_name": "<string>",
      "user_agent": "<string>",
      "ip_address": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "last_active_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

X-Authorization
string
header
required

User Access token

Path Parameters

app_id
string
required

App ID

Response

successful

sessions
object[]