Get Current Identity (Me)

GET

/v1/me

Returns extended profile details for the authenticated user along with the list of accessible workspace accounts and the active workspace context.

Responses

200User and workspace context
{
  "data": {
    "user": {
      "id": "usr_888",
      "email": "agent@acme.com",
      "name": "Sarah Connor",
      "display_name": "Sarah",
      "locale": "en",
      "avatar_url": "https://cdn.deskbolic.com/avatars/usr_888.jpg"
    },
    "accounts": [
      {
        "id": "acc_123",
        "name": "Acme Global Support",
        "identifier": "acme-global"
      }
    ],
    "current_account": {
      "id": "acc_123",
      "name": "Acme Global Support",
      "identifier": "acme-global"
    }
  }
}