> ## 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 mensaje WhatsApp nuevo

> Operacion: Enviar mensaje WhatsApp nuevo.



## OpenAPI

````yaml /generated/specs/communications.json post /api/omnichannel/send-whatsapp
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:
    post:
      tags:
        - Omnichannel
      summary: Enviar mensaje WhatsApp nuevo
      description: 'Operacion: Enviar mensaje WhatsApp nuevo.'
      operationId: OmnichannelController_sendWhatsApp
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendWhatsAppDto'
      responses:
        '201':
          description: ''
      security:
        - bearerAuth: []
components:
  schemas:
    SendWhatsAppDto:
      type: object
      properties:
        to:
          type: string
          description: 'Numero de telefono destino (ej: 56912345678)'
        message:
          type: string
          description: Contenido del mensaje
        attachment:
          $ref: '#/components/schemas/WhatsAppAttachmentDto'
      required:
        - to
        - message
    WhatsAppAttachmentDto:
      type: object
      properties:
        name:
          type: string
          description: Nombre del archivo
        contentType:
          type: string
          description: 'Tipo MIME del archivo (ej: image/jpeg)'
        contentBytes:
          type: string
          description: Contenido del archivo en base64
      required:
        - name
        - contentType
        - contentBytes
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````