---
title: "Get authenticated identity"
method: GET
path: "/v3/me"
tags: ["Identity"]
---

# Get authenticated identity

`GET /v3/me`

Returns token-level identity for the bearer token. OAuth responses include the user, OAuth application, and active connected business installations for the token. If no active connected business remains, the endpoint returns `403` without identity data. Business-scoped API requests still resolve one selected business installation per request.

## Response `200`

Authenticated token identity context

- AuthenticatedIdentity
  - `auth_method` 'oauth' | 'api_key' | 'app_login', nullable, required
  - `user` object, nullable, required
    - `id` integer
    - `unique_id` string, nullable
    - `email` string, nullable
    - `phone` string, nullable
    - `temp_email` string, nullable
    - `fullname` string, nullable
    - `is_verified` boolean
    - `google_connected` boolean
    - `avatar` string, nullable
    - `telegram_chat_id` string, nullable
    - `telegram_token` string, nullable
    - `date_joined` string, date-time, nullable
    - `last_updated_at` string, date-time, nullable
    - `email_change_verified_at` string, date-time, nullable
  - `oauth_application` object, nullable, required
    - `id` integer
    - `client_id` string
    - `name` string, nullable
    - `homepage_url` string, nullable
  - `connected_businesses` AuthenticatedConnectedBusiness[], required
    - `unique_id` string, nullable, required — Business unique id to pass as `business_unique_id` in MCP tools, or as `b_uid` to Scalev HTTP business-scoped routes when selection is required.
    - `username` string, nullable, required
    - `name` string, nullable, required
    - `is_enabled` boolean, required
    - `scopes` string[], required

## Other responses

- `401` — Unauthorized
- `403` — Forbidden

---

[API](https://skmtc.net/scalev/apis/nexus-commerce-api.md) · [All operations](https://skmtc.net/scalev/apis/nexus-commerce-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/scalev/nexus-commerce-api/versions/4354959d76dc/schema)
