---
title: "Get a user by its ID"
method: GET
path: "/users/{id}"
tags: ["user"]
---

# Get a user by its ID

`GET /users/{id}`

Returns a single user by ID.

**Rate limit:** 300 requests per minute

## Path parameters

- `id` string, required

## Response `200`

- GetUserResponseBody
  - `data` User
    - `avatar_url` string — The avatar URL of the user.
    - `email` string — The primary email of the user.
    - `emails` string[] — The list of all emails of the user.
    - `id` string — The ID of the user.
    - `is_deactivated` boolean — Whether the user is deactivated.
    - `name` string — The name of the user.
    - `role` MiniRole
      - `id` string — The ID of the role.
      - `name` string — The name of the role.
      - `slug` string — The slug of the role.
    - `role_id` string — The role_id of the user.
    - `status` '' | 'active' | 'away' | 'out_of_office' — The status of the user.
  - `request_id` string — The request ID for tracking.

## Other responses

- `400` — The request was invalid or could not be completed.
- `403` — The authenticated caller or organization is not allowed to access this endpoint or operation.
- `404`
- `500` — An unexpected internal error occurred.

## Changes

> 22 revisions in range; 3 could not be searched.

- **2026-08-14** `ad855d921ee9` — 4 warning
  - added the new `` enum value to the `data/status` response property for the response status `200`
  - added the new `active` enum value to the `data/status` response property for the response status `200`
  - added the new `away` enum value to the `data/status` response property for the response status `200`
  - added the new `out_of_office` enum value to the `data/status` response property for the response status `200`
- **2026-08-12** `4e84bb73bb7d` — 1 info
  - added the optional property `data/is_deactivated` to the response with the `200` status

[Change history](https://skmtc.dev/usepylon/apis/pylon-api/changes/users/:id/get.md)

---

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