---
title: "Retrieve a single user by ID"
method: GET
path: "/v1/users/{user_id}"
tags: ["Users"]
---

# Retrieve a single user by ID

`GET /v1/users/{user_id}`

## Path parameters

- `user_id` string, uuid, required

## Response `200`

A single user

- UserSchema
  - `id` string, uuid, required — Unique identifier for the user.
  - `teams` ReferenceSchemaTeamSchema[], required — List of teams the user belongs to.
    - `id` string, uuid, required — Unique identifier for the referenced entity.
  - `first_name` string, required — First name of the user.
  - `last_name` string, required — Last name of the user.
  - `email` string, required — Email of the user.
  - `role` 'administrator' | 'ap_clerk' | 'bookkeeper' | 'manager' | 'primary_administrator' | 'spender', required
  - `picture` string, nullable — URL of the user's profile picture.
  - `created_at` string, date-time, required — Timestamp when the user was created.

## Other responses

- `404` — User not found

---

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