⚙️
Channel360
HomeSign InSign Up
  • 🏠ChannelMobile Docs
  • Quick Start
    • Channel360 API
    • AgentChat API
    • Channel360 Guide
      • Dashboard
      • Templates
        • Template Creation
        • Template Configuration
      • Groups
        • Deleting Groups
        • Managing Group Details
      • Campaign
        • Campaign Creation
        • Campaign Statistics
      • Subscribers
        • Managing Subscribers
        • Subscriber Profile
  • Whatsapp Business API
    • WABA Prerequisites
    • WhatsApp Account Health
  • Our Products
    • Products
      • AgentChat
      • SMS
      • Broadcasting
      • ChatBot
  • API Usage
    • Using the Channel360 V1.1 API
      • Notifications
      • Templates
        • Create Templates
        • Read / Get Templates
        • Update Templates
        • Delete Templates
      • Webhooks
      • Conversations
        • Send Interactive Messages
        • Send Text Message
        • Send Media Message
          • Send Video Message
          • Send Image Message
          • Send File Message
        • Get Conversation History
  • Reference
    • API Reference
      • AgentChat API
      • Channel360 V1.1 API
  • FAQs
    • General FAQs
    • Channel360 FAQs
      • Templates
      • Notification Status
    • Technical FAQs
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. API Usage
  2. Using the Channel360 V1.1 API
  3. Conversations

Send Text Message

In this page we show you how to send a text message.

PreviousSend Interactive MessagesNextSend Media Message

Last updated 1 year ago

Was this helpful?

A text-type conversation is simply a message sent using written words and/or actions.

In this table below you'll see the Arguments for this request.

Arguments
Explanation

text *required

The text content of the message. Maximum length of 4096 characters.

actions (optional)

An array of actions related to the message, like buttons or website links.

For example, a "speak to customer support" button with the message is an action. The user won't need to navigate to a different platform to speak to customer support.

How to construct a request to send a text message to a WhatsApp user using the specified API endpoint.


{
    "text": "Hello World"
}
curl --location 'channel360.co.za/v1.1/org/{{orgId}}/whatsapp/appuser/{{appUserId}}/reply' \
--data '{
    "text": "Hello World"
}'

The provided YAML configuration below defines an API specification using the OpenAPI (formerly known as Swagger) format.

Send text request

post

API call to send text

Path parameters
orgIdstringRequired
appUserstringRequired
Body
textstringRequiredExample: Hello World
Responses
200
Successfully Replied.
post
POST /v1.1/org/{orgId}/whatsApp/Appuser/{appUser}/reply HTTP/1.1
Host: www.channel360.co.za
Content-Type: application/json
Accept: */*
Content-Length: 22

{
  "text": "Hello World"
}
200

Successfully Replied.

No content