Send a message
You can send a message to a user using thesend method available on the messaging client on main client cloud api manager. Here is an example of how you can send a message:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn how to send messages using the Wapi.go SDK
send method available on the messaging client on main client cloud api manager. Here is an example of how you can send a message:
// assuming you already have initiated the client
const textMessage = new TextMessage({
text: 'Hello, how are you?'
})
// send a message
const response = await whatsappClient.message.send({
to: '919876543210',
message: textMessagew
})