UsersGet User by ID

Get User by ID

Returns details for a specific company user by their userId. Use this endpoint when you already know the user's identifier and want to look up or refresh a single user without paginating through the full list.

Rules:

  • The userId is the id field from GET /users/v1/users.
  • Returns 404 if the user does not belong to the authenticated company.
curl -X GET "https://api-sandbox.contasimples.com/users/v1/users/550e8400-e29b-41d4-a716-446655440000" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "email": "joao.silva@empresa.com.br",
  "name": "João Silva",
  "phone": "11999999999",
  "role": {
    "id": "8a3f1b2c-4e5d-6f7a-8b9c-0d1e2f3a4b5c",
    "name": "Accountant"
  },
  "active": true
}
GET
/users/v1/users/{userId}
GET
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token
Bearer Tokenstring
Required

Bearer token from OAuth 2.0 client credentials. Format: Bearer {token}

Bearer token from OAuth 2.0 client credentials. Format: Bearer {token}
path
userIdstring
Required

User ID (UUID v4) — use the id field value returned by GET /users/v1/users (e.g., 550e8400-e29b-41d4-a716-446655440000).

Format: uuid
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token. Bearer token from OAuth 2.0 client credentials. Format: Bearer {token}

Path Parameters

userIdstring
Required

User ID (UUID v4) — use the id field value returned by GET /users/v1/users (e.g., 550e8400-e29b-41d4-a716-446655440000).

Responses

idstring
Required

User ID.

emailstring
Required

User email.

namestring
Required

User’s name.

phonestring

User phone number.

roleobject
Required

Access profile assigned to the user in the company.

activeboolean
Required

Whether the user is active.