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

# Actualiza la plantilla de glosa de factura global

> Actualiza la plantilla de glosa de factura global



## OpenAPI

````yaml /generated/specs/settings.json put /api/v1/billing/config/invoice-template
openapi: 3.0.0
info:
  title: Raul API - Configuraciones
  description: Catalogos, tipos, plantillas y configuraciones maestras del sistema.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags:
  - name: Catalogs
    description: Catálogos IMEI y Chip
paths:
  /api/v1/billing/config/invoice-template:
    put:
      tags:
        - Billing - Settings
      summary: Actualiza la plantilla de glosa de factura global
      description: Actualiza la plantilla de glosa de factura global
      operationId: BillingSettingsController_updateInvoiceTemplate
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateInvoiceTemplateDto'
      responses:
        '200':
          description: Configuración actualizada
        '400':
          description: Plantilla inválida
      security:
        - bearerAuth: []
components:
  schemas:
    UpdateInvoiceTemplateDto:
      type: object
      properties:
        template:
          type: string
          description: >-
            Plantilla de glosa para facturas. Admite tokens: {mes}, {año},
            {cliente}
          example: Servicio GPS - {mes} - {año}
          maxLength: 500
      required:
        - template
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````