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

# Send Carousel

> Launch highly interactive, side-scrolling horizontal promotional card arrays equipped with contextual call-to-action buttons for maximized digital conversions.



## OpenAPI

````yaml POST /send/carousel
openapi: 3.0.3
info:
  title: Wachat Enterprise API
  description: >
    Welcome to the official Wachat API reference. Wachat provides
    developer-friendly, ultra-reliable infrastructure to scale your WhatsApp
    communications programmatically.


    Easily deploy automated messaging pipelines, orchestrate interactive
    customer engagement patterns, verify phone numbers instantly, and control
    containerized WhatsApp instances via a secure, production-grade REST
    architecture.
  version: 1.0.0
servers:
  - url: https://app.wachat.net/api/v1
    description: Live Production Gateway
security:
  - bearerAuth: []
paths:
  /send/carousel:
    post:
      tags:
        - High-Conversion UI Modules
      summary: Dispatch Interactive Carousel UI Component
      description: >-
        Launch highly interactive, side-scrolling horizontal promotional card
        arrays equipped with contextual call-to-action buttons for maximized
        digital conversions.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - instanceName
                - number
                - type
                - interactive
              properties:
                instanceName:
                  type: string
                  description: Name of your connected WhatsApp session profile.
                number:
                  type: string
                  description: Target phone number with international country code routing.
                type:
                  type: string
                  enum:
                    - interactive
                  description: Set this strictly to `interactive`.
                  example: interactive
                delay:
                  type: integer
                  description: >-
                    Custom time delay configuration before rendering the
                    structural carousel cards.
                interactive:
                  type: object
                  required:
                    - type
                    - cards
                  properties:
                    type:
                      type: string
                      enum:
                        - carousel
                      description: UI component block schema selector context.
                      example: carousel
                    body:
                      type: string
                      description: >-
                        Primary introductory copy text context rendered directly
                        above the sliding card frame layout.
                      example: 'Here is our web services catalog:'
                    cards:
                      type: array
                      description: >-
                        Matrix listing specific multi-card content parameters
                        and action response setups.
                      items:
                        type: object
                      example:
                        - header:
                            type: image
                            mediaUrl: >-
                              https://cdn.pixabay.com/photo/2022/09/23/09/13/promotion-7474039_1280.png
                          body: Paket Kilat Pembuatan SaaS Modern
                          buttons:
                            - buttonId: c_saas
                              buttonText:
                                displayText: Take Promotion
                              type: 1
                        - header:
                            type: image
                            mediaUrl: >-
                              https://cdn.pixabay.com/photo/2022/07/21/13/18/computer-7336233_1280.png
                          body: Setup VPS & CloudPanel
                          buttons:
                            - buttonId: c_vps
                              buttonText:
                                displayText: Consultation
                              type: 2
      responses:
        '200':
          description: >-
            Complex sliding carousel matrix successfully structured and
            delivered to user interface.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Authenticate your integration payloads by injecting your premium secure
        Wachat Account API Private Secret Key inside standard Authorization
        Bearer header vectors.

````