---
title: "Retrieve the current user"
method: GET
path: "/users/me"
tags: ["Users"]
---

# Retrieve the current user

`GET /users/me`

Retrieve the current user for the authenticated team.

## Response `200`

Retrieve the current user for the authenticated team.

- object
  - `id` string, uuid, required — Unique identifier of the user
  - `fullName` string, required — Full name of the user
  - `email` string, email, required — Email address of the user
  - `avatarUrl` string, uri, nullable, required — URL to the user's avatar image
  - `locale` string, nullable, required — User's preferred locale for internationalization (language and region)
  - `weekStartsOnMonday` boolean, nullable, required — Whether the user's calendar week starts on Monday (true) or Sunday (false)
  - `timezone` string, nullable, required — User's timezone identifier in IANA Time Zone Database format
  - `timezoneAutoSync` boolean, nullable, required — Whether to automatically sync timezone with browser timezone
  - `timeFormat` number, nullable, required — User's preferred time format: 12 for 12-hour format, 24 for 24-hour format
  - `dateFormat` 'dd/MM/yyyy' | 'MM/dd/yyyy' | 'yyyy-MM-dd' | 'dd.MM.yyyy' | 'null', nullable, required — User's preferred date format. Available options: 'dd/MM/yyyy', 'MM/dd/yyyy', 'yyyy-MM-dd', 'dd.MM.yyyy'
  - `fileKey` string, nullable, required — Team file key (JWT token) for proxy/download access to team files. This compact JWT token contains the team ID and is shared by all team members. Use this token as the `fk` query parameter when accessing file endpoints (proxy, download). The token is team-scoped and provides access to files belonging to the user's team. Returns null if the user has no team.
  - `team` object, nullable, required — Team information that the user belongs to
    - `id` string, uuid, required — Unique identifier of the team
    - `name` string, required — Name of the team or organization
    - `logoUrl` string, uri, nullable, required — URL to the team's logo image
    - `plan` string, required — Current subscription plan of the team

## Other responses

- `default` — An error occurred

---

[API](https://skmtc.net/midday-ai/apis/midday-api.md) · [All operations](https://skmtc.net/midday-ai/apis/midday-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/midday-ai/midday-api/versions/c0df9243c1b0/schema)
