WhatsApp
Envoyer un média (WhatsApp)
Envoyer une image, un document ou un média WhatsApp
POST
/
whatsapp
/
send
/
media
Envoyer un média (WhatsApp)
curl --request POST \
--url https://api.dexchange-sms.com/api/v1/whatsapp/send/media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"to": "<string>",
"mediaUrl": "<string>",
"mediaType": "<string>",
"caption": "<string>",
"from": "<string>"
}
'import requests
url = "https://api.dexchange-sms.com/api/v1/whatsapp/send/media"
payload = {
"to": "<string>",
"mediaUrl": "<string>",
"mediaType": "<string>",
"caption": "<string>",
"from": "<string>"
}
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({
to: '<string>',
mediaUrl: '<string>',
mediaType: '<string>',
caption: '<string>',
from: '<string>'
})
};
fetch('https://api.dexchange-sms.com/api/v1/whatsapp/send/media', 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://api.dexchange-sms.com/api/v1/whatsapp/send/media",
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([
'to' => '<string>',
'mediaUrl' => '<string>',
'mediaType' => '<string>',
'caption' => '<string>',
'from' => '<string>'
]),
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://api.dexchange-sms.com/api/v1/whatsapp/send/media"
payload := strings.NewReader("{\n \"to\": \"<string>\",\n \"mediaUrl\": \"<string>\",\n \"mediaType\": \"<string>\",\n \"caption\": \"<string>\",\n \"from\": \"<string>\"\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://api.dexchange-sms.com/api/v1/whatsapp/send/media")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"to\": \"<string>\",\n \"mediaUrl\": \"<string>\",\n \"mediaType\": \"<string>\",\n \"caption\": \"<string>\",\n \"from\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.dexchange-sms.com/api/v1/whatsapp/send/media")
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 \"to\": \"<string>\",\n \"mediaUrl\": \"<string>\",\n \"mediaType\": \"<string>\",\n \"caption\": \"<string>\",\n \"from\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyDescription
Envoie un média (image, vidéo, document, audio) via WhatsApp depuis un numéro connecté, avec une légende optionnelle.Paramètres de la requête
string
required
Numéro du destinataire au format international sans
+.string
required
URL publique du média à envoyer (accessible par nos serveurs).
string
Type de média :
image, video, document ou audio. Déduit du fichier si
omis.string
Légende accompagnant le média (texte).
string
Numéro expéditeur, si plusieurs numéros connectés.
Exemple de requête
curl -X POST https://api.dexchange-sms.com/api/v1/whatsapp/send/media \
-H "Authorization: Bearer VOTRE_CLE_API" \
-H "Content-Type: application/json" \
-d '{
"to": "221771234567",
"mediaUrl": "https://exemple.com/facture.pdf",
"mediaType": "document",
"caption": "Votre facture de janvier"
}'
await fetch('https://api.dexchange-sms.com/api/v1/whatsapp/send/media', {
method: 'POST',
headers: { 'Authorization': 'Bearer VOTRE_CLE_API', 'Content-Type': 'application/json' },
body: JSON.stringify({
to: '221771234567',
mediaUrl: 'https://exemple.com/facture.pdf',
mediaType: 'document',
caption: 'Votre facture de janvier'
})
});
Réponse
{
"success": true,
"messageID": "wamid...."
}
L’
mediaUrl doit être accessible publiquement le temps de l’envoi. Les URLs
protégées par authentification ne peuvent pas être récupérées.⌘I
Envoyer un média (WhatsApp)
curl --request POST \
--url https://api.dexchange-sms.com/api/v1/whatsapp/send/media \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"to": "<string>",
"mediaUrl": "<string>",
"mediaType": "<string>",
"caption": "<string>",
"from": "<string>"
}
'import requests
url = "https://api.dexchange-sms.com/api/v1/whatsapp/send/media"
payload = {
"to": "<string>",
"mediaUrl": "<string>",
"mediaType": "<string>",
"caption": "<string>",
"from": "<string>"
}
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({
to: '<string>',
mediaUrl: '<string>',
mediaType: '<string>',
caption: '<string>',
from: '<string>'
})
};
fetch('https://api.dexchange-sms.com/api/v1/whatsapp/send/media', 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://api.dexchange-sms.com/api/v1/whatsapp/send/media",
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([
'to' => '<string>',
'mediaUrl' => '<string>',
'mediaType' => '<string>',
'caption' => '<string>',
'from' => '<string>'
]),
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://api.dexchange-sms.com/api/v1/whatsapp/send/media"
payload := strings.NewReader("{\n \"to\": \"<string>\",\n \"mediaUrl\": \"<string>\",\n \"mediaType\": \"<string>\",\n \"caption\": \"<string>\",\n \"from\": \"<string>\"\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://api.dexchange-sms.com/api/v1/whatsapp/send/media")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"to\": \"<string>\",\n \"mediaUrl\": \"<string>\",\n \"mediaType\": \"<string>\",\n \"caption\": \"<string>\",\n \"from\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.dexchange-sms.com/api/v1/whatsapp/send/media")
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 \"to\": \"<string>\",\n \"mediaUrl\": \"<string>\",\n \"mediaType\": \"<string>\",\n \"caption\": \"<string>\",\n \"from\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body