Internal site. Jolli authentication required to view.
Skip to Content
API ReferencePlatformGET /v0/config/session

Get Session

GET/v0/config/sessionPlatform

Try it

GET/v0/config/session
Authentication

Retrieve login session information for your current user session.

Authentication

  • JSON web token (JWT) or API keyBearer token

Response

200The response body contains current session information including tenant details.application/json
  • object
    • tenant_idstring (uuid)required
    • tenant_namestringrequired
      Current user's tenant name
500Request failed.application/json
  • object
    Information returned by REST API endpoints on error.
    • detailsobjectrequired
      Detailed error metadata. The contents of this field is determined by `error_code`.
    • error_codestringrequired
      Error code is a string that specifies this error type.
    • messagestringrequired
      Human-readable error message.
Request
curl -X GET 'https://api.example.com/v0/config/session' \ -H 'Authorization: Bearer YOUR_TOKEN'