> ## 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.

# List Infraction Reports

> Use this endpoint to list all infraction reports associated with a funds recovery request.



## OpenAPI

````yaml en/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 Indirect - Complete API
  description: |
    Complete API for Brazilian Pix instant payment system including
    Pix key dictionary operations, QR code generation/decoding, transactions and
    transaction limits.
  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: List Infraction Reports
      description: >-
        Use this endpoint to list all infraction reports associated with a funds
        recovery request.
      parameters:
        - name: funds_recovery_id
          in: path
          description: Funds Recovery ID (UUID format)
          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: The response message error.
      required:
        - code
        - title
        - message
      properties:
        code:
          type: string
          description: A unique, stable identifier for the error.
        title:
          type: string
          description: A brief summary of the issue.
        message:
          type: string
          description: Detailed guidance for resolving the error.
    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

````