> ## 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 de uma recuperação de valores

> Retorna os relatos de infração associados a uma recuperação de valores dentro do escopo do participante determinado pelo tenant autenticado. {id} é o ID de recurso da recuperação de valores. Um ID desconhecido ou uma recuperação pertencente a outro participante retorna 404. O BCB não pagina essa lista; por isso, a resposta contém apenas items e total.



## OpenAPI

````yaml pt/openapi/v3-current/pix-lerian-dict.yaml GET /dict/funds-recoveries/{id}/infraction-reports
openapi: 3.1.0
info:
  contact:
    name: Lerian Studio
    url: https://lerian.studio
  description: >-
    API pública para chaves Pix, reivindicações, marcadores de fraude, relatos
    de infração e recuperação de valores do MED.
  license:
    name: Elastic License 2.0
    url: https://www.elastic.co/licensing/elastic-license
  title: Pix Lerian — DICT
  version: release-candidate
servers:
  - url: https://api.example.com/dict-hub/v1
    description: Substitua o host de exemplo pela URL fornecida no onboarding do ambiente.
security:
  - BearerAuth: []
tags:
  - description: Registro, consulta, listagem, atualização e remoção de chaves Pix.
    name: Entries
  - description: Consulta de chaves Pix e verificação de existência no diretório DICT.
    name: Keys
  - description: Gestão de reivindicações de posse e portabilidade de chaves Pix.
    name: Claims
  - description: Gestão de recuperações de valores do MED 2.0 no escopo do participante.
    name: Funds Recoveries
  - description: Gestão de relatos de infração do MED 2.0 para a organização autenticada.
    name: Infraction Reports
  - description: Criação, consulta, cancelamento e liquidação de devoluções do MED 2.0.
    name: Refunds
  - description: >-
      Criação, consulta, listagem e cancelamento de marcadores de fraude do
      DICT.
    name: Fraud Markers
paths:
  /dict/funds-recoveries/{id}/infraction-reports:
    get:
      tags:
        - Funds Recoveries
      summary: Listar relatos de infração de uma recuperação de valores
      description: >-
        Retorna os relatos de infração associados a uma recuperação de valores
        dentro do escopo do participante determinado pelo tenant autenticado.
        {id} é o ID de recurso da recuperação de valores. Um ID desconhecido ou
        uma recuperação pertencente a outro participante retorna 404. O BCB não
        pagina essa lista; por isso, a resposta contém apenas items e total.
      operationId: listFundsRecoveryInfractionReports
      parameters:
        - description: Funds recovery internal ID (UUID format)
          in: path
          name: id
          required: true
          schema:
            description: Funds recovery internal ID (UUID format)
            examples:
              - 018f8c1d-1234-7abc-9def-000000000001
            type: string
          example: 01960718-a213-2435-6078-901234567123
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListInfractionReportsOutput'
              examples:
                exemploFicticio:
                  summary: Exemplo fictício
                  value:
                    items:
                      - analysisDetails: Mule account confirmed by anti-fraud analysis.
                        analysisResult: AGREED
                        bacenFundsRecoveryId: 018f8c1d-1111-7abc-9def-000000000001
                        bacenInfractionReportId: 018f8c1d-aaaa-7abc-9def-000000000010
                        contactInformation:
                          email: user@example.com
                          phone: '+5511999999999'
                        counterpartyParticipant: '87654321'
                        creationTime: '2026-06-18T12:00:00Z'
                        fraudMarkerId: 018f8c1d-bbbb-7abc-9def-000000000020
                        infractionAmount: '1500.00'
                        lastModified: '2026-06-18T12:05:00Z'
                        reason: REFUND_REQUEST
                        reportDetails: Customer reported a scam.
                        reporterParticipant: '12345678'
                        situationType: SCAM
                        status: OPEN
                        transactionId: E1234567820260618000000000000001
                    total: 1
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      x-codeSamples:
        - lang: bash
          label: cURL com dados fictícios
          source: |-
            curl --request GET \
              --url https://api.example.com/dict-hub/v1/dict/funds-recoveries/01960718-a213-2435-6078-901234567123/infraction-reports \
              --header 'Authorization: Bearer demo-access-token'
components:
  schemas:
    ListInfractionReportsOutput:
      additionalProperties: false
      properties:
        items:
          items:
            $ref: '#/components/schemas/InfractionReportOutput'
          type:
            - array
            - 'null'
        total:
          examples:
            - 1
          format: int64
          type: integer
      required:
        - items
        - total
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Stable, machine-readable domain error code scoped to the emitting
            service (format: <SERVICE>-NNNN).
          examples:
            - ERR-0001
          type: string
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
        upstream:
          $ref: '#/components/schemas/Upstream'
          description: >-
            RFC 9457 extension member: the error a proxied third-party provider
            reported. Absent unless the emitting service explicitly surfaced
            one.
      type: object
    InfractionReportOutput:
      additionalProperties: false
      properties:
        analysisDetails:
          examples:
            - Mule account confirmed by anti-fraud analysis.
          type: string
        analysisResult:
          enum:
            - AGREED
            - DISAGREED
          examples:
            - AGREED
          type: string
        bacenFundsRecoveryId:
          examples:
            - 018f8c1d-1111-7abc-9def-000000000001
          type: string
        bacenInfractionReportId:
          examples:
            - 018f8c1d-aaaa-7abc-9def-000000000010
          type: string
        contactInformation:
          $ref: '#/components/schemas/ContactInformationOutput'
        counterpartyParticipant:
          examples:
            - '87654321'
          type: string
        creationTime:
          examples:
            - '2026-06-18T12:00:00Z'
          type: string
        fraudMarkerId:
          examples:
            - 018f8c1d-bbbb-7abc-9def-000000000020
          type: string
        infractionAmount:
          examples:
            - '1500.00'
          type: string
        lastModified:
          examples:
            - '2026-06-18T12:05:00Z'
          type: string
        reason:
          enum:
            - REFUND_REQUEST
            - REFUND_CANCELLED
          examples:
            - REFUND_REQUEST
          type: string
        reportDetails:
          examples:
            - Customer reported a scam.
          type: string
        reporterParticipant:
          examples:
            - '12345678'
          type: string
        situationType:
          enum:
            - SCAM
            - ACCOUNT_TAKEOVER
            - COERCION
            - FRAUDULENT_ACCESS
            - OTHER
            - UNKNOWN
          examples:
            - SCAM
          type: string
        status:
          enum:
            - OPEN
            - ACKNOWLEDGED
            - CLOSED
            - CANCELLED
          examples:
            - OPEN
          type: string
        transactionId:
          examples:
            - E1234567820260618000000000000001
          type: string
      required:
        - bacenInfractionReportId
        - transactionId
        - reason
        - status
        - reporterParticipant
        - counterpartyParticipant
        - contactInformation
        - creationTime
        - lastModified
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
    Upstream:
      additionalProperties: false
      properties:
        code:
          description: The upstream provider's own error code, verbatim.
          examples:
            - E4001
          type: string
        message:
          description: >-
            The upstream provider's own error message, verbatim (bounded, never
            its raw response body).
          examples:
            - account not found at provider
          type: string
      type: object
    ContactInformationOutput:
      additionalProperties: false
      properties:
        email:
          examples:
            - user@example.com
          type: string
        phone:
          examples:
            - '+5511999999999'
          type: string
      required:
        - email
        - phone
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      description: JWT bearer token issued by the identity provider.
      scheme: bearer
      type: http

````