> ## 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 autorizaciones de Pix Automático

> Lista las autorizaciones activas que pertenecen al pagador autenticado, con filtros opcionales y paginación por página/límite. Incluye los valores calculados `nextChargeAt` / `nextChargeAmount`.



## OpenAPI

````yaml es/openapi/v3-current/indirect-pix.yaml GET /v1/recurrences/payer/authorizations
openapi: 3.0.3
info:
  title: Plugin BR Pix Indirect - API completa
  description: |
    API completa para el sistema de pagos instantáneos Pix de Brasil, que
    incluye operaciones del diccionario de claves Pix, generación/decodificación
    de códigos QR, transacciones y límites transaccionales.
  version: 1.7.6
servers:
  - url: https://plugin-pix-indirect.api.lerian.net
security:
  - bearerAuth: []
paths:
  /v1/recurrences/payer/authorizations:
    get:
      tags:
        - Pix Automático API
      summary: Listar autorizaciones de Pix Automático
      description: >-
        Lista las autorizaciones activas que pertenecen al pagador autenticado,
        con filtros opcionales y paginación por página/límite. Incluye los
        valores calculados `nextChargeAt` / `nextChargeAmount`.
      parameters:
        - $ref: '#/components/parameters/XAccountId'
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Page'
        - name: status
          in: query
          description: Filtra por estado
          schema:
            type: string
            enum:
              - AUTHORIZED
              - CANCELLED
              - EXPIRED
        - name: receiver_document
          in: query
          description: Filtra por documento del receptor (CPF o CNPJ, sin máscara)
          schema:
            type: string
        - $ref: '#/components/parameters/SortOrder'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAllAuthorizationsOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFormat'
      security:
        - bearerAuth: []
components:
  parameters:
    XAccountId:
      name: X-Account-Id
      in: header
      description: Identificador único de la cuenta del Ledger de Midaz (formato UUID).
      required: true
      example: 019c96a0-0a98-7287-9a31-786e0809c769
      schema:
        type: string
    Limit:
      name: limit
      in: query
      description: Número máximo de elementos por página.
      required: false
      example: 10
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 10
    Page:
      name: page
      in: query
      description: Número de página para la paginación.
      required: false
      example: 1
      schema:
        type: integer
        minimum: 1
        default: 1
    SortOrder:
      name: sort_order
      in: query
      description: 'Dirección de ordenamiento: asc o desc.'
      required: false
      example: asc
      schema:
        type: string
        enum:
          - asc
          - desc
        default: asc
  schemas:
    GetAllAuthorizationsOutput:
      properties:
        items:
          items:
            $ref: '#/components/schemas/AuthorizationOutput'
          type: array
        limit:
          type: integer
          example: 10
        page:
          type: integer
          example: 1
        total:
          type: integer
          example: 42
      type: object
    ErrorFormat:
      type: object
      description: El mensaje de error de la respuesta.
      required:
        - code
        - title
        - message
      properties:
        code:
          type: string
          description: Un identificador único y estable para el error.
        title:
          type: string
          description: Un breve resumen del problema.
        message:
          type: string
          description: Orientación detallada para resolver el error.
    AuthorizationOutput:
      properties:
        accountId:
          example: 019cf6ef-e418-7ced-80c0-7b9816faa798
          type: string
        amount:
          $ref: '#/components/schemas/AuthorizationRequestAmountProfile'
        approvedAt:
          format: date-time
          type: string
        authorizationRequestId:
          example: 019cf6ef-e418-7ced-80c0-7b9816faa798
          type: string
        cancelReason:
          enum:
            - PAYER
            - FRAUD
            - EXPIRED
            - RECEIVER
          type: string
        cancellationReason:
          description: >-
            CancellationReason es la justificación en texto libre registrada al
            momento de cancelar (obligatoria para FRAUD). Nil cuando no está
            presente.
          example: Customer reported unauthorized charge
          type: string
        cancellationReasonKind:
          description: >-
            CancellationReasonKind es el motivo de cancelación estructurado
            (PAYER, FRAUD, EXPIRED, RECEIVER). Nil cuando la autorización no fue
            cancelada.
          enum:
            - PAYER
            - FRAUD
            - EXPIRED
            - RECEIVER
          example: FRAUD
          type: string
        cancelledAt:
          format: date-time
          type: string
        cancelledByOperatorId:
          description: >-
            CancelledByOperatorID es el operador que realizó una cancelación por
            FRAUD. Nil para cancelaciones iniciadas por el pagador o por el
            sistema.
          example: op-9
          type: string
        createdAt:
          format: date-time
          type: string
        destination:
          $ref: '#/components/schemas/AuthorizationRequestDestination'
        expiredAt:
          format: date-time
          type: string
        externalAuthorizationId:
          example: AUT-2026-04-001
          type: string
        id:
          example: 019cf6ef-e418-7ced-80c0-7b9816faa798
          type: string
        nextChargeAmount:
          example: '29.90'
          type: string
        nextChargeAt:
          format: date-time
          type: string
        periodicity:
          $ref: '#/components/schemas/AuthorizationRequestPeriodicity'
        receiverMaxAmount:
          example: '500.00'
          type: string
        retryPolicy:
          example: RETRY_3X_7D
          type: string
        status:
          enum:
            - AUTHORIZED
            - CANCELLED
            - EXPIRED
          example: AUTHORIZED
          type: string
        updatedAt:
          format: date-time
          type: string
      type: object
    AuthorizationRequestAmountProfile:
      properties:
        fixed:
          example: '29.90'
          type: string
        max:
          example: '500.00'
          type: string
        min:
          example: '10.00'
          type: string
      type: object
    AuthorizationRequestDestination:
      properties:
        account:
          example: '123456'
          type: string
        accountType:
          enum:
            - CACC
            - SVGS
            - TRAN
            - OTHR
          example: CACC
          type: string
        bank:
          example: '30306294'
          type: string
        branch:
          example: '0001'
          type: string
        document:
          example: '12345678000199'
          type: string
        key:
          example: contato@streaming.co
          type: string
        name:
          example: Streaming Co
          type: string
        personType:
          enum:
            - NATURAL_PERSON
            - LEGAL_PERSON
          example: LEGAL_PERSON
          type: string
      type: object
    AuthorizationRequestPeriodicity:
      properties:
        customDays:
          example: 30
          type: integer
        type:
          enum:
            - WEEKLY
            - MONTHLY
            - QUARTERLY
            - SEMIANNUAL
            - ANNUAL
            - CUSTOM
          example: MONTHLY
          type: string
      type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````