Exemple — cURL
curl --location 'https://rest.smsmode.com/rcs/v1/messages' \
--header 'X-Api-Key: YOUR_API_KEY_HERE' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data '{
"recipient": {
"to": "33600000000"
},
"body": {
"type": "TEXT",
"text": "Welcome to the smsmode RCS service !"
}
}'