Blackkonnect SMS
  1. Mobile SMS Messaging
Blackkonnect SMS
  • Blackkonnnect SMS API
  • Access Token
    • Retrieve access token
      POST
  • Mobile SMS Messaging
    • Send a simple SMS message
      POST
    • Send bulk SMS messages
      POST
    • Get message status
      GET
    • Get message status
      GET
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
    • Schemas
      • SimpleSmsMessageRequest
      • GenericRequest
      • ItemPagination
      • SimpleSmsMessageResponse
      • BulkSmsMessageRequest
      • DeliveryTime
      • DeliveryWindow
      • MessageDestination
      • SmsMessage
      • BulkSmsMessageResponse
      • MessageGroupStatus
      • SmsMessageDeliveryStatus
      • ProblemDetail
      • GenericResponseNetworkOperatorMessageDeliveryDTO
      • GatewayMessageDeliveryStatus
      • NetworkOperatorMessageDeliveryDTO
      • GatewayMessageDeliveryStatusDTO
  1. Mobile SMS Messaging

Send bulk SMS messages

Testing Env
https://test.your-api-server.com
Testing Env
https://test.your-api-server.com
POST
/api/sms/send-bulk-messages/v1
Allows sending bulk SMS messages to multiple recipients.

Request

Authorization
Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Bulk messages queued successfully
Body

🟠400Bad Request
🟠401Unauthorized
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test.your-api-server.com/api/sms/send-bulk-messages/v1' \
--header 'X-ServiceAccount-ID;' \
--header 'X-Organisation-ID;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "messageId": "string",
    "referenceId1": "string",
    "referenceId2": "string",
    "serviceId": "string",
    "requestId": "string",
    "initiatorId": "string",
    "bulkId": "string",
    "sourceAddress": "string",
    "messages": [
        {
            "destinations": [
                {
                    "destination": "string",
                    "messageId": "string",
                    "sourceAddress": "string"
                }
            ],
            "callbackData": "string",
            "deliveryTimeWindow": {
                "days": [
                    "MONDAY"
                ],
                "from": {
                    "hour": 0,
                    "minute": 0
                },
                "to": {
                    "hour": 0,
                    "minute": 0
                }
            },
            "text": "string",
            "entityId": "string",
            "sendAt": "2019-08-24T14:15:22.123Z",
            "validityPeriodMinutes": 0,
            "priority": 0
        }
    ]
}'
Response Response Example
200 - Example 1
{
    "code": 0,
    "message": null,
    "data": {
        "destinations": [
            {
                "destination": "string",
                "messageId": "string",
                "sourceAddress": "string"
            }
        ],
        "callbackData": "string",
        "deliveryTimeWindow": {
            "days": [
                "MONDAY"
            ],
            "from": {
                "hour": 0,
                "minute": 0
            },
            "to": {
                "hour": 0,
                "minute": 0
            }
        },
        "text": "string",
        "entityId": "string",
        "sendAt": "2019-08-24T14:15:22.123Z",
        "validityPeriodMinutes": 0,
        "priority": 0
    },
    "correlationId": "string",
    "conversationId": "string",
    "requestId": "string",
    "items": [
        {
            "destinations": [
                {
                    "destination": "string",
                    "messageId": "string",
                    "sourceAddress": "string"
                }
            ],
            "callbackData": "string",
            "deliveryTimeWindow": {
                "days": [
                    "MONDAY"
                ],
                "from": {
                    "hour": 0,
                    "minute": 0
                },
                "to": {
                    "hour": 0,
                    "minute": 0
                }
            },
            "text": "string",
            "entityId": "string",
            "sendAt": "2019-08-24T14:15:22.123Z",
            "validityPeriodMinutes": 0,
            "priority": 0
        }
    ],
    "itemPagination": {
        "totalElements": 0,
        "pageSize": 0,
        "totalPages": 0,
        "pageNumber": 0,
        "offSet": 0
    },
    "bulkId": "string",
    "smsMessageDeliveryStatuses": [
        {
            "messageId": "string",
            "messageGroupStatus": {
                "statusGroupName": "string",
                "deliveryStatus": "QUEUED",
                "statusDescription": "string",
                "action": "string"
            },
            "destination": "string",
            "smsCount": 0
        }
    ],
    "isSuccessful": true
}
Modified at 2025-10-21 01:07:56
Previous
Send a simple SMS message
Next
Get message status
Built with