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

# Send content

> Allows to run multiple actions and send multiple messages. Works for all channels.



## OpenAPI

````yaml POST /contacts/{contact_id}/send_content
openapi: 3.0.0
info:
  title: Fliqr AI API
  version: '1.1'
  description: >-
    REST API for Fliqr AI. Authenticate every request with the `X-ACCESS-TOKEN`
    header.
servers:
  - url: https://app.fliqr.ai/api
    description: Production
security:
  - APIKeyHeader: []
tags:
  - name: Accounts
  - name: Contacts
  - name: AI Agents
  - name: Pipelines
  - name: Ecommerce
  - name: Appointment Management
  - name: Templates
paths:
  /contacts/{contact_id}/send_content:
    post:
      tags:
        - Contacts
      summary: Send Content
      description: >-
        Allows to run multiple actions and send multiple messages. Works for all
        channels.
      operationId: sendContent
      parameters:
        - name: contact_id
          in: path
          required: true
          schema:
            type: integer
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                messages:
                  type: array
                  items: {}
                actions:
                  type: array
                  items: {}
                channel:
                  type: string
                  enum:
                    - messenger
                    - sms
                    - whatsapp
                    - googleBM
                    - telegram
                    - instagram
                    - rcs
                    - viber
                    - omnichannel
              example:
                messages:
                  - message:
                      text: Hello world
                actions: []
                channel: messenger
        required: true
      responses:
        default:
          description: successful operation
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-ACCESS-TOKEN
      description: >-
        API access token from your Fliqr AI dashboard (**Settings → API**). Send
        it in the `X-ACCESS-TOKEN` header on every request.

````