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

# Get current user data

`GET /users/me`

Returns data about an authorized user within the company with bound company data: company ID, company name, and domain. Note that the `locale` property means 'Date/number format' in the Pipedrive account settings, not the chosen language.

## Response `200`

The data of the logged in user

- object
  - `success` boolean — If the response is successful or not
  - `data` object
    - `id` integer — The user ID
    - `name` string — The user name
    - `default_currency` string — The user default currency
    - `locale` string — The user locale
    - `lang` integer — The user language ID
    - `email` string — The user email
    - `phone` string, nullable — The user phone
    - `activated` boolean — Boolean that indicates whether the user is activated
    - `last_login` string — The last login date and time of the user. Format: YYYY-MM-DD HH:MM:SS
    - `created` string — The creation date and time of the user. Format: YYYY-MM-DD HH:MM:SS
    - `modified` string, nullable — The last modification date and time of the user. Format: YYYY-MM-DD HH:MM:SS
    - `has_created_company` boolean — Boolean that indicates whether the user has created a company
    - `access` object[]
      - `app` 'global' | 'sales' | 'campaigns' | 'projects' | 'account_settings' | 'partnership' — The granular app access level
      - `admin` boolean — Whether the user has admin access or not
      - `permission_set_id` string — The ID of the permission set
    - `active_flag` boolean — Boolean that indicates whether the user is activated
    - `timezone_name` string — The user timezone name
    - `timezone_offset` string — The user timezone offset
    - `role_id` integer — The ID of the user role
    - `icon_url` string, nullable — The user icon URL
    - `is_you` boolean — Boolean that indicates if the requested user is the same which is logged in (in this case, always true)
    - `is_deleted` boolean — Boolean that indicates whether the user is deleted from the company
    - `company_id` integer — The user company ID
    - `company_name` string — The user company name
    - `company_domain` string — The user company domain
    - `company_country` string — The user company country
    - `company_industry` string — The user company industry
    - `language` object — The user language details
      - `language_code` string — The language code. E.g. en
      - `country_code` string — The country code. E.g. US

## Other responses

- `401` — Unauthorized response

---

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