# Multiple Messages to Multiple MSISDN API

## Send Multiple SMS to Multiple Mobile Numbers

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

This API is used to push multiple notifications to multiple customers through SMS.

#### Request Body

| Name        | Type    | Description                                                                                     |
| ----------- | ------- | ----------------------------------------------------------------------------------------------- |
| username    | string  | The username used to login to the system.                                                       |
| password    | string  | The password in encrypted format of the username used to login to the system.                   |
| senderId    | string  | Unique identifier that is assigned to your account and is to be used to send SMS to recipients. |
| messageType | string  | Type of message                                                                                 |
| message     | string  | Message text to be sent to recipients.                                                          |
| msisdn      | integer | Mobile number to which the message is to be sent.                                               |

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

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

{% endtab %}

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

```
{    
    "message": "Failed"
}
```

{% endtab %}
{% endtabs %}
