# Single Message to Multiple MSISDN API

## Single Message to Multiple MSISDN

<mark style="color:green;">`POST`</mark> `http://api.koreroplatforms.com/omni-sms-api/multipush/singlemsg`

This API is used to push a notification to multiple mobile numbers.

#### Request Body

| Name        | Type   | Description                                                                                         |
| ----------- | ------ | --------------------------------------------------------------------------------------------------- |
| username    | string | The credentials for API access                                                                      |
| password    | string | The credentials for API access                                                                      |
| eid         | string | The entity ID as assigned by TRAI DLT                                                               |
| tid         | string | The template ID associated with the message content as assigned 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 message                                                                                 |
| messageText | string | Message text to be sent to recipients.                                                              |
| msisdns     | string | This parameter is an array of objects. Each object includes a 'country code' and 'MSISDN'           |
| countryCode | array  | country code of the MSISDN                                                                          |

{% tabs %}
{% tab title="200 Success message." %}

```
{    
    "message": "Success"
}
```

{% endtab %}

{% tab title="404 Failure message." %}

```
{    
    "message": "Failure"
}
```

{% endtab %}
{% endtabs %}
