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

# Get progress of invoice creation execution

> Returns the current progress status of an invoice creation execution. Used for polling the status of async invoice generation.



## OpenAPI

````yaml /generated/specs/finance.json get /api/v1/facturacion-2/progress/{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/progress/{executionId}:
    get:
      tags:
        - Facturacion 2.0
      summary: Get progress of invoice creation execution
      description: >-
        Returns the current progress status of an invoice creation execution.
        Used for polling the status of async invoice generation.
      operationId: Facturacion2Controller_getProgress
      parameters:
        - name: executionId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Execution progress retrieved successfully
          content:
            application/json:
              schema:
                example:
                  ejecucion_id: uuid
                  periodo: 2026-01
                  estado: procesando
                  progreso: 45
                  total_clientes: 190
                  total_intentadas: 85
                  total_exitosas: 83
                  total_fallidas: 2
                  monto_total: 25000000
                  tiempo_segundos: null
                  mensaje: 'Procesando clientes: 85 de 190 (83 exitosas, 2 fallidas)'
                  errores: []
        '404':
          description: Execution not found

````