---
title: "Get User by ID"
method: GET
path: "/api/v1/user/id/{id}"
tags: ["User Management"]
---

# Get User by ID

`GET /api/v1/user/id/{id}`

Retrieves a single user's details based on their DealHub user ID. Fields with null values will not be included in the response.

## Path parameters

- `id` string, required

## Response `200`

Success. Returns the user object.

- User
  - `login` string — Login of the user.
  - `id` string — DealHub user ID.
  - `email` string, email — Primary email of the user.
  - `name` string — User's full name.
  - `position` string — The role of the user in the organization (job title).
  - `business_title` string — Business title of the user in the CRM organization.
  - `phone` string — User's phone number.
  - `mobile` string — User's mobile phone number.
  - `fax` string — User's fax number.
  - `company` string — User's company name.
  - `street` string — Street name.
  - `city` string — City name.
  - `state` string — State name.
  - `country` string — Country name.
  - `postal_code` string — Postal code.
  - `user_manager_login` string — Login of the user's manager.
  - `is_active` boolean — Flag indicating if the user is active.

## Other responses

- `400` — Bad Request. The user could not be found.
- `403` — Forbidden. Invalid or missing authentication token.

---

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