latestOpenAPI 3.1.0Proprietary2026-08-1095216168.4 KB

db81a447bba9

Account

Get account

Returns the current user's full account: profile, settings, linked identity providers, and tenant memberships with per-tenant role and permission summary.

get/account

Response

Current user account details

emailstring required
idinteger required
namestring required
remarksstring nullable
role'user' | 'admin' | 'root' required
status'inactive' | 'active' | 'locked' | 'deleted' required
titlestring required
verifiedboolean required
aboutstring required
permissionsstring[] nullable

Example response

{
  "email": "alice@laserdata.com",
  "id": 7261844898910240000,
  "name": "Alice Doe",
  "title": "Backend Engineer",
  "about": "Production deployment for high-throughput streaming.",
  "identities": [
    {
      "created_at": "2026-05-20T10:00:00Z"
    }
  ],
  "tenants": [
    {
      "id": 7261845022003200000,
      "name": "acme-corp",
      "permissions": {
        "divisions": [
          {
            "id": 7261844974723780000,
            "name": "production",
            "environments": [
              {
                "id": 7261845066528310000,
                "name": "staging"
              }
            ]
          }
        ]
      }
    }
  ],
  "settings": {
    "default_division": {
      "id": 7261844974723780000,
      "name": "production"
    },
    "default_tenant": {
      "id": 7261845022003200000,
      "name": "acme-corp"
    }
  }
}