Skip to Content
API ReferencePlatformGet Session

Get Session

GET/v0/config/session
Authentication

Retrieve login session information for your current user session.

Authentication

SchemeTypeDetails
JSON web token (JWT) or API keyBearer tokenAuthorization header · Use a JWT token obtained via an OAuth2/OIDC login workflow or an API key obtained via the `/v0/api-keys` endpoint.

Response

application/json
The response body contains current session information including tenant details.
  • object
    • tenant_idstring (uuid)required
    • tenant_namestringrequired
      Current user's tenant name
Request
curl -X GET '/v0/config/session' \
  -H 'Authorization: Bearer YOUR_TOKEN'