> ## Documentation Index
> Fetch the complete documentation index at: https://docs.domsoftware.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Detalhar Usuário

> Recupera o cadastro completo, permissões e papel (role) de um Usuário a partir de seu UUID.

### Path

<ParamField path="id" type="string" required>
  UUID do Perfil de Usuário.
</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "e4b6d4e8-8e6d-41da-abdb-8fc358a9e7f1",
    "tenantId": "e305e9a4-585e-49b8-bc88-9fba992c6326",
    "name": "João da Silva",
    "email": "joao@email.com",
    "role": "admin",
    "createdAt": "2024-02-15T10:00:00.000Z"
  }
  ```
</ResponseExample>


## OpenAPI

````yaml get /users/{id}
openapi: 3.0.0
info:
  title: Hub Marketplace API
  description: API for managing marketplace listings and keys
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: listings
    description: ''
paths:
  /users/{id}:
    get:
      tags:
        - Users
      operationId: UsersController_findOne
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''

````