---
title: "Get user profile"
method: GET
path: "/api/v1/organization/user/profile"
tags: ["Users"]
---

# Get user profile

`GET /api/v1/organization/user/profile`

Retrieve information about the authenticated user. This endpoint is only available with user-scoped authentication.

## Response `200`

User profile details

- UserProfile
  - `id` integer, required — User ID
  - `name` string — User name
  - `email` string, email, required — User email
  - `title` string — User title
  - `nickName` string — User nickname
  - `phoneNumber` string — User phone number
  - `role` object, required — User role information
    - `id` integer, required — Role ID
    - `name` string, required — Role name
    - `permissions` Permission[], required — Array of permission names
  - `orgId` integer, required — Organization ID, that the user belongs to
  - `orgName` string — Organization name
  - `tz` string — User timezone in the IANA Time Zone Database (TZDB) format.
  - `locale` string — User locale.
  - `status` 'Pending' | 'Active' | 'Inactive' | 'Suspended', required — User status
  - `lastModifiedTs` integer, required — Timestamp, indicating the time, when the user was modified last time (Unix epoch milliseconds)
  - `lastLoggedAt` integer — Timestamp, when the user has logged in last time (Unix epoch milliseconds)
  - `registeredAt` integer, required — Timestamp, when the user has registered (Unix epoch milliseconds)
  - `isDev` boolean, required — Whether the user has enabled the developer mode
  - `isDarkMode` boolean, required — Whether the user has enabled dark mode

## Other responses

- `403` — Forbidden - This endpoint requires user-scoped authentication
- `429` — Too many requests
- `500` — Internal server error

---

[API](https://skmtc.dev/blynk/apis/blynk-platform-api.md) · [All operations](https://skmtc.dev/blynk/apis/blynk-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/blynk/blynk-platform-api/revisions/d8640cc48a13/schema)
