wpeereboom / php-telzio
Php library to connect with the Telzio API
Installs: 291
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 1
pkg:composer/wpeereboom/php-telzio
Requires
- guzzlehttp/guzzle: ^6.1
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is not auto-updated.
Last update: 2025-10-15 23:47:10 UTC
README
Introduction
This library is a client for the Telzio API
Features
This library’s features include the following.
- Get the Live calls at this moment
- Get the call log with call details
- Get specific call details
Installation
The recommended way to install this library is through Composer:
$ php composer.phar require wpeereboom/php-telzio dev-master
Usage
The client
Use the client to get the call data. First construct a client and call the methods to receive the data:
$telzioClient = new TelzioClient($username, $password); // To get the live calls $liveCalls = $telzioClient->getLiveCalls(); // To get the first 20 records of the call log $logResult = $telzioClient->getLog(); // To get the details of a specific call $call = $telzioClient->getCallDetails('sd35wegwe-b32we3-23b1c-4583e-ec1338asdc45e'); // CallUUID // To get the account details, currently only balance information $account = $telzioClient->getAccount();