usmsgh / usmsgh-v3-api-sdk
PHP SDK for the Urhitech Bulk SMS V3 API
Requires
- php: >=8.0
- ext-curl: *
- ext-json: *
README
The Urhitech SMS PHP SDK provides a suitable approach to the USMSGH API from applications written in PHP. It includes pre-defined set of classes and functions for API resource that initialize themeselves from API responses.
The library provides other features. For Example:
- Easy configuration path for fast setup and use
- Helpers for pagination.
You can sign up for a USMSGH account at usmsgh.com
Prerequisites
PHP ^8.0 and later
Installation
Via Composer
$ composer require usmsgh/usmsgh-v3-api-sdk
Via Git Bash
git clone https://github.com/majesty2017/usmsgh-v3-api-sdk.git
Documentation
Please see https://usmsgh.com/developer/ for up-to-date documentation
Usage
Step 1:
If you install the Urhitech SMS PHP SDK via Git Clone then load the Urhitech SMS PHP API class file and use namespace.
require_once '/path/to/src/Usms.php'; use Urhitech\Usms;
If you install Urhitech SMS PHP SDK via Composer the Require the autoload.php file in the index.php of your project or whatever file you need to use Urhitech SMS PHP API classes.
require __DIR__ . '/vendor/autoload.php'; use use Urhitech\Usms;
The Urhitech SMS PHP SDK endpoints are RESTful, and consume and return JSON. All Http endpoints requires an API Key in the request header.
For more information on how to get an API Key visit here to copy or generate new key for authorization.
HTTP ENDPOINTS
- https://webapp.usmsgh.com/api/v3/sms/send
- https://webapp.usmsgh.com/api/v3/sms/{uid}
- https://webapp.usmsgh.com/api/v3/sms
- https://webapp.usmsgh.com/api/v3/me
- https://webapp.usmsgh.com/api/v3/balance
- https://webapp.usmsgh.com/api/v3/contacts
- https://webapp.usmsgh.com/api/v3/contacts/{group_id}/show/
- https://webapp.usmsgh.com/api/v3/contacts/{group_id}
- https://webapp.usmsgh.com/api/v3/contacts/{group_id}/store
- https://webapp.usmsgh.com/api/v3/contacts/{group_id}/search/{uid}
- https://webapp.usmsgh.com/api/v3/contacts/{group_id}/update/{uid}
- https://webapp.usmsgh.com/api/v3/contacts/{group_id}/delete/{uid}
- https://webapp.usmsgh.com/api/v3/contacts/{group_id}/all
Step 2:
Instantiate the UrhitechSMSPHPAPI
$client = new Urhitech\Usms;
Send SMS
$api_key = "Enter Your API Key here"; $url = "https://webapp.usmsgh.com/api/v3/sms/send"; $recipients = "233500000000,233540000000"; $message = "Hello world"; $senderid = "Enter your approved sender ID here"; $response = $client->send_sms($url, $api_key, $senderid, $recipients, $message);
Check SMS Credit Balance
$api_key = "Enter Your API Key here"; $url = "https://webapp.usmsgh.com/api/v3/balance"; $get_credit_balance = $client->check_balance($url, $api_key);
View Profile
$api_key = "Enter Your API Key here"; $url = "https://webapp.usmsgh.com/api/v3/me"; $get_profile = $client->profile($url, $api_key);
Status Code
Status | Message |
---|---|
ok |
Successfully Send |
100 |
Bad gateway requested |
101 |
Wrong action |
102 |
Authentication failed |
103 |
Invalid phone number |
104 |
Phone coverage not active |
105 |
Insufficient balance |
106 |
Invalid Sender ID |
107 |
Invalid SMS Type |
108 |
SMS Gateway not active |
109 |
Invalid Schedule Time |
110 |
Media url required |
111 |
SMS contain spam word. Wait for approval |