> For the complete documentation index, see [llms.txt](https://wiki.mobivatebulksms.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.mobivatebulksms.com/archived-docs/sending-simple-notification-messages.md).

# Sending simple Notification messages

Learn how to send simple messages using our API.

This guide will go over how to send simple notification messages using our API, perfect for PIN codes or OTP (One time passwords). For this, Mobivate recommends you use our Simple API.

```http
HTTP GET/POST:
https://app.mobivatebulksms.com/gateway/api/simple/MT?
USER_NAME=user@domain.com&PASSWORD=xxxxxxxxx&ORIGINATOR=Test&RECIPIENT=447930000000&ROUTE=mglobal&MESSAGE_TEXT=Your+PIN+is+654321
```

**Required Parameters:**

| Parameter     | Description                                                                          |
| ------------- | ------------------------------------------------------------------------------------ |
| ROUTE         | Mobivate recommends using "mglobal", but other Route IDs are available upon request. |
| ORIGINATOR    | 11 alpha-numeric sender name or 15 digit number.                                     |
| RECIPIENT     | International formatted mobile/cell number.                                          |
| MESSAGE\_TEXT | Text message (160 characters, 70 if containing Unicode (2 bytes) characters).        |
| USERNAME      | Your username.                                                                       |
| PASSWORD      | Your password.                                                                       |

{% hint style="warning" %}
Please don't forget to [URL Encode](https://www.w3schools.com/tags/ref_urlencode.ASP) parameters if using the HTTP GET method. URL Encoding is **NOT** required when using HTTP POST.
{% endhint %}
