Korero Platforms
  • Introduction
  • Channel Prerequisites
  • Error Codes
  • Credits
  • Solutions
  • Channel APIs
    • SMS APIs
      • Single Message to Single MSISDN API
      • Single Message to Multiple MSISDN API
      • Multiple Messages to Multiple MSISDN API
    • Voice APIs
      • Send an outbound call
      • Send Text to Voice OBD API
    • Email APIs
      • Send Email API
    • WhatsApp API
      • Template Message - Text
      • Template message - document
      • Template message - Image
Powered by GitBook
On this page

Was this helpful?

  1. Channel APIs
  2. SMS APIs

Single Message to Single MSISDN API

Single Message to Single MSISDN

POST http://api.koreroplatforms.com/omni-sms-api/smspush

This API is used to push a single SMS notification to a single mobile number

Request Body

Name
Type
Description

username

string

The credentials for API access

password

string

The credentials for API access

eid

string

The principal entity ID assigned by TRAI DLT

tid

string

The template ID of the message content as provided by TRAI DLT

senderId

string

The unique identifier that is assigned to your account and is to be used to send SMS to recipients.

messageType

string

The type of the message

message

string

Message text to be sent to recipients.

countryCode

string

Country code of MSISDN

msisdn

string

Mobile number to which the message is to be sent.

{
    "res": [
        {
            "code": "0",
            "description": "Message submitted successfully",
            "messageId": "HS21774718003518757203",
            "msisdn": "9679112120",
            "dateTime": "2021-04-18 00:35:18",
            "status": true
        }
    ]
}
{
    "res": [
        {
            "code": "991",
            "description": "Authentication_Failure",
            "messageId": "HS21764116173353128927",
            "msisdn": "9679112120",
            "dateTime": "2021-04-16 17:33:53",
            "status": true
        }
    ]
}

PreviousSMS APIsNextSingle Message to Multiple MSISDN API

Last updated 4 years ago

Was this helpful?