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

# Resume an interrupted invoice creation execution

> Resumes processing for an execution that was interrupted (by server restart, error, etc). Detects which clients are pending and continues from where it stopped.



## OpenAPI

````yaml /generated/specs/finance.json post /api/v1/facturacion-2/resume/{executionId}
openapi: 3.0.0
info:
  title: Raul API - Finanzas
  description: >-
    Facturas, boletas, ejecuciones de billing, cuentas por pagar y medios de
    pago.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags: []
paths:
  /api/v1/facturacion-2/resume/{executionId}:
    post:
      tags:
        - Facturacion 2.0
      summary: Resume an interrupted invoice creation execution
      description: >-
        Resumes processing for an execution that was interrupted (by server
        restart, error, etc). Detects which clients are pending and continues
        from where it stopped.
      operationId: Facturacion2Controller_resumeExecution
      parameters:
        - name: executionId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Execution resumed successfully
          content:
            application/json:
              schema:
                example:
                  ejecucion_id: uuid
                  periodo: 2026-01
                  uf_value: 0
                  estado: procesando
                  total_clientes: 109
                  message: Reanudando proceso con 109 clientes pendientes
        '404':
          description: Execution not found

````