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

# List

> Lista todos os usuarios ativos do Hub.

Requer usuario autenticado com role admin.



## OpenAPI

````yaml https://api.vertgroup.com.br/openapi.json get /identity/users
openapi: 3.1.0
info:
  title: SGG Automation — DOM Med
  version: 1.0.0
servers: []
security: []
paths:
  /identity/users:
    get:
      tags:
        - 02.Identity - User
      summary: List
      description: |-
        Lista todos os usuarios ativos do Hub.

        Requer usuario autenticado com role admin.
      operationId: list_identity_users_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/UserDetailResponse'
                type: array
                title: Response List Identity Users Get
      security:
        - HTTPBearer: []
components:
  schemas:
    UserDetailResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          description: Identificador unico do usuario.
          examples:
            - 3fa85f64-5717-4562-b3fc-2c963f66afa6
        email:
          type: string
          title: Email
          description: Email do usuario.
          examples:
            - ana.souza@dommed.com.br
        role:
          allOf:
            - $ref: '#/components/schemas/UserRole'
          description: 'Papel do usuario no Hub: admin ou employee.'
          examples:
            - employee
        is_active:
          type: boolean
          title: Is Active
          description: Se falso, o usuario foi desativado e nao consegue mais autenticar.
          examples:
            - true
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Data e hora de criacao do usuario, em UTC.
          examples:
            - '2026-08-20T14:32:00Z'
      type: object
      required:
        - id
        - email
        - role
        - is_active
        - created_at
      title: UserDetailResponse
    UserRole:
      type: string
      enum:
        - admin
        - employee
      title: UserRole
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````