Skip to main content
GET
/
users
/
{id}
curl -X GET https://api.arca.example.com/users/123e4567-e89b-12d3-a456-426614174000 \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "id_User": "123e4567-e89b-12d3-a456-426614174000",
  "nome": "John Doe",
  "email": "[email protected]",
  "roleId": 2
}
Retrieve a specific user by their ID.

Authentication

Requires a valid JWT token in the Authorization header:
Authorization: Bearer {token}

Authorization

You can only view users with a role level equal to or lower than your own.

Path Parameters

id
string
required
The user’s unique identifier (UUID).

Response

id_User
string
The user’s unique identifier (UUID).
nome
string
The user’s name.
email
string
The user’s email address.
roleId
number
The user’s role ID.
curl -X GET https://api.arca.example.com/users/123e4567-e89b-12d3-a456-426614174000 \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "id_User": "123e4567-e89b-12d3-a456-426614174000",
  "nome": "John Doe",
  "email": "[email protected]",
  "roleId": 2
}

Build docs developers (and LLMs) love