Skip to content

Identity

Notes:

Public API v1 is currently in feature preview and as such documentation for this feature is still work in progress

The identity endpoint returns the authenticated user and workspace context.

GET /me

The identity endpoint returns the current authenticated user and workspace context.

Response

  • A 200 OK response is returned with user and workspace information.
json
{
  "data": {
    "user": {
      "email": "user@xpna.com",
      "fullName": "Alex Smith"
    },
    "workspace": {
      "identifier": "demo",
      "name": "Demo Workspace"
    }
  },
  "meta": {
    "apiVersion": "1.0",
    "requestId": "00-6b2f90b3a92445f792a2b2a6b4d8e6d0-0a8a7d9b9d8c4e2f-00",
    "correlationId": "3f3cb61b8f5342b4b4f0a3e2e1d0d5b1",
    "workspaceIdentifier": "demo",
    "timestamp": "2026-02-03T05:16:02.000Z"
  }
}