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



## OpenAPI

````yaml GET /pix-automatic/recurrences
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:
  /pix-automatic/recurrences:
    get:
      tags:
        - Recurrences
      summary: Listar recorrências da empresa
      operationId: RecurrenceController_findAll
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecurrenceListResponseDto'
components:
  schemas:
    RecurrenceListResponseDto:
      type: object
      properties:
        status:
          type: number
        message:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/RecurrenceDto'
      required:
        - status
        - message
        - data
    RecurrenceDto:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - OPEN
            - COMPLETED
            - EXPIRED
            - CANCELED
        productId:
          type: string
        productName:
          type: string
        customerId:
          type: string
        customerName:
          type: string
        value:
          type: string
          description: Valor recorrente em centavos
        frequency:
          type: string
          enum:
            - WEEKLY
            - MONTHLY
            - SEMIANNUAL
            - ANNUAL
        dayDue:
          type: number
        dayGenerateCharge:
          type: number
        externalRecurrenceId:
          type: string
        paymentLinkUrl:
          type: string
        emv:
          type: string
        qrCode:
          type: string
          description: QR do EMV em PNG base64 (data URL), gerado pelo backend
        recurrenceAuthStatus:
          type: string
          enum:
            - CREATED
            - APPROVED
            - REJECTED
            - CANCELED
            - EXPIRED
        isRecurringTemplate:
          type: boolean
          description: true se é um link self-serve (template) sem acordo ainda
        createdAt:
          format: date-time
          type: string
      required:
        - id
        - status
        - productId
        - customerId
        - value
        - createdAt
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````