curl --request POST \
--url https://shortext.ny-corp.io/api/messages/send \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"channel": "whatsapp",
"contact": {
"phone": "1234567890",
"profile": {
"lastname": "Yoan",
"firstname": "André",
"email": "celia@home.io",
"address": "Place to be",
"preferred_language": "en"
}
},
"from": "1234567890",
"message": {
"type": "text",
"content": {
"text": "Ceci est un message texte.",
"preview_url": true
}
}
}'