Blackkonnect SMS
  1. Mobile SMS Messaging
Blackkonnect SMS
  • Blackkonnnect SMS API
  • Mobile SMS Messaging
    • Send a simple SMS message
      POST
    • Send bulk SMS messages
      POST
    • Get message status
      GET
    • Get message status
      GET
    • handleDeliveryReceipt
      GET
  • Access Token
    • Retrieve access token
      POST
  1. Mobile SMS Messaging

Send a simple SMS message

Testing Env
https://test.your-api-server.com
Testing Env
https://test.your-api-server.com
POST
/api/sms/send-message/v1
Allows sending a simple SMS message to a single recipient.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test.your-api-server.com/api/sms/send-message/v1' \
--header 'Content-Type: application/json' \
--data-raw '{
    "messageId": "string",
    "referenceId1": "string",
    "referenceId2": "string",
    "serviceId": "string",
    "requestId": "string",
    "initiatorId": "string",
    "text": "string",
    "destination": "string",
    "sourceAddress": "string",
    "priority": 0
}'
Response Response Example
200 - Example 1
{
    "code": 0,
    "message": {},
    "data": {},
    "correlationId": "string",
    "conversationId": "string",
    "requestId": "string",
    "items": [
        {}
    ],
    "itemPagination": {
        "totalElements": 0,
        "pageSize": 0,
        "totalPages": 0,
        "pageNumber": 0,
        "offSet": 0
    },
    "deliveryStatus": "QUEUED",
    "isSuccessful": true
}

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
Message sent successfully
Body

🟠400Bad Request
🟠401Unauthorized
🔴500Server Error
Modified at 2025-05-16 13:32:30
Previous
Blackkonnnect SMS API
Next
Send bulk SMS messages
Built with