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

# Pausa la regla: no materializa ni alerta (REP-009)



## OpenAPI

````yaml /openapi/v1.json post /v1/repeating-transactions/{id}/pause
openapi: 3.0.0
info:
  title: Finzaria API
  description: >-
    API REST de Finzaria — finanzas personales para México, dev-first y
    agent-first. Autentícate con tu API key bxm_ (o un token OAuth).
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.finzaria.com/v1
    description: Producción
security: []
tags: []
paths:
  /v1/repeating-transactions/{id}/pause:
    post:
      tags:
        - repeating-transactions
      summary: 'Pausa la regla: no materializa ni alerta (REP-009)'
      operationId: RepeatingController_pause
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RepeatingDto'
      security:
        - bearer: []
components:
  schemas:
    RepeatingDto:
      type: object
      properties:
        id:
          type: string
        description:
          type: string
        memo:
          type: string
          nullable: true
        amount:
          type: string
          nullable: true
          description: null = monto variable
        type:
          type: string
          enum:
            - expense
            - income
            - transfer
        accountId:
          type: string
          nullable: true
        fromAccountId:
          type: string
          nullable: true
        toAccountId:
          type: string
          nullable: true
        currency:
          type: string
        startDate:
          type: string
        periodUnit:
          type: string
          enum:
            - week
            - month
            - year
        periodCount:
          type: number
        repeatUntil:
          type: string
          nullable: true
        nextDueDate:
          type: string
          description: Próxima fecha de vencimiento.
        emailAlert:
          type: boolean
        autoAdd:
          type: boolean
        status:
          type: string
          enum:
            - active
            - paused
            - finished
        pausedReason:
          type: string
          nullable: true
        category:
          nullable: true
          description: Categoría (una); null = Sin categoría.
          type: object
          allOf:
            - $ref: '#/components/schemas/RepeatingCategoryRefDto'
        monthlyEquivalent:
          type: string
          nullable: true
          example: '12000.00'
          description: Gasto fijo mensual equivalente (REP-005); null si monto variable.
        createdAt:
          type: string
      required:
        - id
        - description
        - memo
        - amount
        - type
        - accountId
        - fromAccountId
        - toAccountId
        - currency
        - startDate
        - periodUnit
        - periodCount
        - repeatUntil
        - nextDueDate
        - emailAlert
        - autoAdd
        - status
        - pausedReason
        - category
        - monthlyEquivalent
        - createdAt
    RepeatingCategoryRefDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
      required:
        - id
        - name
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT (Supabase Auth)
      type: http

````