# SMS Gateway API

### Providers Validation

&#x20;<mark style="color:green;">`POST`</mark>  `{{ BASE }}/bulk-sms`

```
--header 'Accept: application/json'
--header 'Authorization: Bearer {{  access_token }}'
```

**Request Body**

Below are the request body parameters 🎉

| Name                 | Type   | Description                                                                                                                      |
| -------------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------- |
| **sender\_name**     | String | The Sender ID is a maximum of 11 Characters                                                                                      |
| **recipient**        | Number | Recipient Number, the 'to' parameter can be in any of these formats 07037770033, 2347037770033, +2347037770033, +23407037770033. |
| **message**          | String |                                                                                                                                  |
| **reference**        | String | Unique id                                                                                                                        |
| **transaction\_pin** | Number | Padiwise 6 Digit Pincode                                                                                                         |

Response Body

```html
{
    "status": true,
    "message": "Message sent successfully. Note: you will be charged base on country code!",
    "data": {
        "verified": {{true}},
        "message": "{{message}}"
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://padiwise.gitbook.io/padiwise/value-added-services/sms.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
