SMS Gateway API

Our Bulk SMS Gateway API allows you to integrate your Padiwise account with your application or website. This could be used for sending OTPs (One Time Passwords), Transactional SMS, e.t.c

Providers Validation

POST {{ 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

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

Last updated