Send Single SMS
Send an SMS message to one mobile recipient.
bashCopy codePOST /messages/send HTTP/1.1
Host: api.celenity.com
Authorization: Bearer {API_KEY}
Content-Type: application/json
{
"to": "+1234567890",
"message": "Hello from Celenity!",
"sender_name": "MyApp"
}jsonCopy code{
"status": "success",
"message_id": "abc123",
"recipient": "+1234567890"
}Last updated