PHP code example of avidian / semaphore

1. Go to this page and download the library: Download avidian/semaphore library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

avidian / semaphore example snippets



use Avidian\Semaphore\Client;

$client = new Client('your api key', [/* options */]);

$response = $client->send('09991234567', 'your message');

// multiple recipients
$recipients = '09991234567, 09997654321';
$response = $client->send($recipients, 'your message');

$response = $client->messages([ 'limit' => 100, 'page' => 1 ]);

$options = [
    'limit' => 100,
    'page' => 1,
    'sendername' => 'SEMAPHORE',
    'startDate' => '2016-01-01',
    'endDate' => '2016-02-01',
    'network' => 'globe',
    'status' => 'success',
];

$response = $client->account();

$response = $client->senderNames();

$response = $client->transactions();
javascript
$response = $client->users();
json
[
  {
    "name": "Semaphore",
    "status": "Active",
    "created": "2016-01-01 00:00:01"
  },
  {
    "name": "Kickstart",
    "status": "Active",
    "created": "2016-01-01 00:00:01""
  }
]