Reply within a WhatsApp conversation
curl --request POST \
--url https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"files": [
{
"media_url": "https://cdn.example.com/files/invoice.pdf",
"filename": "invoice.pdf",
"content_base64": "<string>",
"mime": "application/pdf"
}
],
"user_email": "jsmith@example.com",
"take_over": false
}
'import requests
url = "https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply"
payload = {
"message": "<string>",
"files": [
{
"media_url": "https://cdn.example.com/files/invoice.pdf",
"filename": "invoice.pdf",
"content_base64": "<string>",
"mime": "application/pdf"
}
],
"user_email": "jsmith@example.com",
"take_over": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
message: '<string>',
files: [
{
media_url: 'https://cdn.example.com/files/invoice.pdf',
filename: 'invoice.pdf',
content_base64: '<string>',
mime: 'application/pdf'
}
],
user_email: 'jsmith@example.com',
take_over: false
})
};
fetch('https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'message' => '<string>',
'files' => [
[
'media_url' => 'https://cdn.example.com/files/invoice.pdf',
'filename' => 'invoice.pdf',
'content_base64' => '<string>',
'mime' => 'application/pdf'
]
],
'user_email' => 'jsmith@example.com',
'take_over' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply"
payload := strings.NewReader("{\n \"message\": \"<string>\",\n \"files\": [\n {\n \"media_url\": \"https://cdn.example.com/files/invoice.pdf\",\n \"filename\": \"invoice.pdf\",\n \"content_base64\": \"<string>\",\n \"mime\": \"application/pdf\"\n }\n ],\n \"user_email\": \"jsmith@example.com\",\n \"take_over\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"message\": \"<string>\",\n \"files\": [\n {\n \"media_url\": \"https://cdn.example.com/files/invoice.pdf\",\n \"filename\": \"invoice.pdf\",\n \"content_base64\": \"<string>\",\n \"mime\": \"application/pdf\"\n }\n ],\n \"user_email\": \"jsmith@example.com\",\n \"take_over\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"message\": \"<string>\",\n \"files\": [\n {\n \"media_url\": \"https://cdn.example.com/files/invoice.pdf\",\n \"filename\": \"invoice.pdf\",\n \"content_base64\": \"<string>\",\n \"mime\": \"application/pdf\"\n }\n ],\n \"user_email\": \"jsmith@example.com\",\n \"take_over\": false\n}"
response = http.request(request)
puts response.read_bodyWhatsApp
Reply within a WhatsApp conversation
Channel-scoped variant of the conversation reply: sends a human reply into a WhatsApp conversation. Same request and response as POST /api/v1/conversations//reply; the conversation must be a WhatsApp conversation (422 otherwise). Text and files are supported — the message becomes the first file’s caption. Subject to WhatsApp’s 24-hour customer service window; outside it use POST /api/v1/send-whatsapp-template.
POST
/
api
/
v1
/
whatsapp
/
conversations
/
{uuid}
/
reply
Reply within a WhatsApp conversation
curl --request POST \
--url https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"files": [
{
"media_url": "https://cdn.example.com/files/invoice.pdf",
"filename": "invoice.pdf",
"content_base64": "<string>",
"mime": "application/pdf"
}
],
"user_email": "jsmith@example.com",
"take_over": false
}
'import requests
url = "https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply"
payload = {
"message": "<string>",
"files": [
{
"media_url": "https://cdn.example.com/files/invoice.pdf",
"filename": "invoice.pdf",
"content_base64": "<string>",
"mime": "application/pdf"
}
],
"user_email": "jsmith@example.com",
"take_over": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
message: '<string>',
files: [
{
media_url: 'https://cdn.example.com/files/invoice.pdf',
filename: 'invoice.pdf',
content_base64: '<string>',
mime: 'application/pdf'
}
],
user_email: 'jsmith@example.com',
take_over: false
})
};
fetch('https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'message' => '<string>',
'files' => [
[
'media_url' => 'https://cdn.example.com/files/invoice.pdf',
'filename' => 'invoice.pdf',
'content_base64' => '<string>',
'mime' => 'application/pdf'
]
],
'user_email' => 'jsmith@example.com',
'take_over' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply"
payload := strings.NewReader("{\n \"message\": \"<string>\",\n \"files\": [\n {\n \"media_url\": \"https://cdn.example.com/files/invoice.pdf\",\n \"filename\": \"invoice.pdf\",\n \"content_base64\": \"<string>\",\n \"mime\": \"application/pdf\"\n }\n ],\n \"user_email\": \"jsmith@example.com\",\n \"take_over\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"message\": \"<string>\",\n \"files\": [\n {\n \"media_url\": \"https://cdn.example.com/files/invoice.pdf\",\n \"filename\": \"invoice.pdf\",\n \"content_base64\": \"<string>\",\n \"mime\": \"application/pdf\"\n }\n ],\n \"user_email\": \"jsmith@example.com\",\n \"take_over\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{subdomain}.mihu.ai/api/v1/whatsapp/conversations/{uuid}/reply")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"message\": \"<string>\",\n \"files\": [\n {\n \"media_url\": \"https://cdn.example.com/files/invoice.pdf\",\n \"filename\": \"invoice.pdf\",\n \"content_base64\": \"<string>\",\n \"mime\": \"application/pdf\"\n }\n ],\n \"user_email\": \"jsmith@example.com\",\n \"take_over\": false\n}"
response = http.request(request)
puts response.read_bodyAuthorizations
Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"
Path Parameters
The conversation's UUID
Body
application/json
The text to send. Required unless files are given; with files it becomes the first file's caption
Maximum string length:
4096Maximum array length:
10Show child attributes
Show child attributes
Workspace token only: the member the reply is attributed to (required for workspace tokens)
Response
Reply sent
⌘I