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

# Listar transferências

> Lista todos os pagamentos Pix realizados pela empresa.



## OpenAPI

````yaml GET /bank-transfer
openapi: 3.0.0
info:
  title: payera-api
  description: Documentação de endpoints e entidades da payera
  version: '1.0'
  contact: {}
servers:
  - url: https://api.rivoopay.com
security:
  - ApiKeyAuth: []
paths:
  /bank-transfer:
    get:
      tags:
        - Bank Transfer
      summary: Listar transferências
      description: Lista todos os pagamentos Pix realizados pela empresa.
      operationId: BankTransferController_listTransfers
      responses:
        '200':
          description: Lista de transferências
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BankTransferListResponseDto'
        '401':
          description: Não autorizado
        '422':
          description: Empresa não possui conta RivooPay aprovada
components:
  schemas:
    BankTransferListResponseDto:
      type: object
      properties:
        status:
          type: number
        message:
          type: string
        data:
          $ref: '#/components/schemas/WooviPaymentListResponseDto'
      required:
        - status
        - message
        - data
    WooviPaymentListResponseDto:
      type: object
      properties:
        payments:
          description: Lista de pagamentos realizados
          type: array
          items:
            $ref: '#/components/schemas/WooviPaymentResponseDto'
        total:
          type: number
          example: 10
          description: Total de pagamentos encontrados
      required:
        - payments
        - total
    WooviPaymentResponseDto:
      type: object
      properties:
        paymentId:
          type: string
          example: payment_123456
          description: ID do pagamento na Woovi
        correlationID:
          type: string
          example: correlationID_abc
          description: ID de correlação fornecido
        value:
          type: number
          example: 10000
          description: Valor do pagamento em centavos
        status:
          type: string
          example: CREATED
          description: Status do pagamento (CREATED, APPROVED, CONFIRMED, CANCELLED)
        createdAt:
          type: string
          example: '2025-12-15T12:00:00.000Z'
          description: Data de criação do pagamento
        endToEndId:
          type: string
          example: E18236120202012032010s0133872GZA
          description: End to end ID (disponível após confirmação)
      required:
        - paymentId
        - correlationID
        - value
        - status
        - createdAt
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````