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

# Send a message



## OpenAPI

````yaml post /agency/twilio/send-message
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /agency/twilio/send-message:
    post:
      tags:
        - Twilio
      summary: Send a message
      operationId: TwilioController_sendMessage
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendMessageDto'
      responses:
        '200':
          description: Message sent successfully
      security:
        - apiKey: []
components:
  schemas:
    SendMessageDto:
      type: object
      properties:
        chatID:
          type: string
          description: Chat ID for the conversation
        message:
          type: string
          description: Message content to be sent
      required:
        - chatID
        - message
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````