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

# Listar Relatos de Infração

> Use este endpoint para listar todos os relatos de infração associados a uma solicitação de recuperação de recursos.



## OpenAPI

````yaml pt/openapi/v3-current/indirect-pix.yaml GET /v1/dict/funds-recoveries/{funds_recovery_id}/infraction-reports
openapi: 3.0.3
info:
  title: Plugin BR Pix Indireto - API Completa
  description: |
    API completa para o sistema brasileiro de pagamentos instantâneos Pix,
    incluindo operações de dicionário de chaves Pix, geração/decodificação de
    QR Code, transações e limites de transações.
  version: 1.0.0
servers:
  - url: https://plugin-pix-indirect.api.lerian.net
security:
  - bearerAuth: []
paths:
  /v1/dict/funds-recoveries/{funds_recovery_id}/infraction-reports:
    get:
      tags:
        - Funds Recovery API
      summary: Listar Relatos de Infração
      description: >-
        Use este endpoint para listar todos os relatos de infração associados a
        uma solicitação de recuperação de recursos.
      parameters:
        - name: funds_recovery_id
          in: path
          description: ID da Recuperação de Recursos (formato UUID)
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListFundsRecoveryInfractionsOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
      deprecated: false
      security:
        - bearerAuth: []
components:
  schemas:
    ListFundsRecoveryInfractionsOutput:
      properties:
        infractionReports:
          items:
            $ref: '#/components/schemas/FundsRecoveryInfractionOutput'
          type: array
      type: object
    ErrorFormat:
      type: object
      description: A mensagem de erro da resposta.
      required:
        - code
        - title
        - message
      properties:
        code:
          type: string
          description: Um identificador único e estável para o erro.
        title:
          type: string
          description: Um breve resumo do problema.
        message:
          type: string
          description: Orientação detalhada para resolver o erro.
    FundsRecoveryInfractionOutput:
      properties:
        analysisDetails:
          type: string
        analysisResult:
          type: string
        bacenFundsRecoveryId:
          example: ca1b9c01-ff9e-4a58-90ab-d31512e15ce0
          type: string
        counterpartyParticipant:
          example: '87654321'
          type: string
        creationTime:
          format: date-time
          type: string
        fraudMarkerId:
          type: string
        fundsRecoveryId:
          example: 550e8400-e29b-41d4-a716-446655440000
          type: string
        id:
          example: 550e8400-e29b-41d4-a716-446655440000
          type: string
        lastModified:
          format: date-time
          type: string
        reason:
          example: REFUND_REQUEST
          type: string
        reportDetails:
          type: string
        reporterParticipant:
          example: '12345678'
          type: string
        situationType:
          example: SCAM
          type: string
        status:
          example: OPEN
          type: string
        transactionId:
          example: E12345678202411241430ABCDEFGHIJK
          type: string
      type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````