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

# Enviar template de WhatsApp

> Operacion: Enviar template de WhatsApp.



## OpenAPI

````yaml /generated/specs/communications.json post /api/omnichannel/send-whatsapp-template
openapi: 3.0.0
info:
  title: Raul API - Comunicaciones
  description: Inbox, omnichannel, bandejas compartidas, email sync, WhatsApp, spam y tags.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags: []
paths:
  /api/omnichannel/send-whatsapp-template:
    post:
      tags:
        - Omnichannel
      summary: Enviar template de WhatsApp
      description: 'Operacion: Enviar template de WhatsApp.'
      operationId: OmnichannelController_sendWhatsAppTemplate
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendWhatsAppTemplateDto'
      responses:
        '201':
          description: ''
      security:
        - bearerAuth: []
components:
  schemas:
    SendWhatsAppTemplateDto:
      type: object
      properties:
        to:
          type: string
          description: 'Numero de telefono destino (ej: 56912345678)'
        template_name:
          type: string
          description: Nombre del template aprobado en Meta
        language_code:
          type: string
          description: 'Codigo de idioma del template (ej: "es", "en_US")'
        components:
          description: Componentes del template con parametros
          type: array
          items:
            type: string
      required:
        - to
        - template_name
        - language_code
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````