v1
latestOpenAPI 3.0.32026-07-24156161.2 MBStreams Service
single_simple_send
Send a single SMS message in one request. The body is a flat object — ideal for transactional, one-off messages. For high volume, use simple_send to batch up to 250 messages per call.
Set a unique internal_id to correlate the message with delivery webhooks. The response returns a task_id and the assigned message_uuid/conversation_uuid.
Authentication: stream token in the Authorization header (see Authentication in the API Overview).
post/streams/simple_send_single
Request body
Example request
{
"internal_id": "1001",
"sender": "CommPeak",
"recipient_phone": "447700900123",
"message_content": "Hi Lando, your CommPeak code is 4821."
}Response
The message was accepted for delivery.
Example response
{
"status": true,
"task_id": "ca550f7e-9eb5-45b3-9830-e82b407ede02",
"messages": [
{
"internal_id": "1001",
"message_uuid": "a61e5bfe-c82b-448a-815b-32de8bf22089",
"conversation_uuid": "e2a489db-bb8a-4f51-9692-726153599c57",
"error": "0x31",
"details": "reached daily limit"
}
]
}