teli / teli-php
Teli PHP SDK
Installs: 14 938
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.6.0
- php-curl-class/php-curl-class: ^8.8
This package is auto-updated.
Last update: 2025-05-05 00:23:12 UTC
README
Documentation
The documentation for the Tele API can be found here.
Basic Example
use Teli\Teli; $callApiSIDToken = "TELI_CALL_API_SID_TOKEN"; // Your Call API SID Token from https://control.teli.net $apiToken = "TELI_API_TOKEN"; // Your API Token from https://control.teli.net $teli = new Teli($callApiSIDToken, $apiToken); $response = $teli->sms->send([ 'source' => 2674935581, 'destination' => 7205551212, 'message' => 'Hery' ]); var_dump($response);
Getting help
If you need help installing or using the library, please file a support ticket here.
If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!