itrn0 / php-iqtek-dialer-api-client
PHP client for IQTek Dialer API
v0.1.1
2023-02-10 08:52 UTC
Requires
- php: >=7.4
- ext-json: *
- guzzlehttp/guzzle: ^7.0
Requires (Dev)
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2025-04-14 13:35:28 UTC
README
A PHP library for interacting with IQTek's Dialer API.
Installation
To install the library, simply use composer:
composer require itrn0/php-iqtek-dialer-api-client
Usage
use Itrn0\Iqtek\Dialer\Api\Client; $client = new Client([ 'api_key' => 'API_KEY', ]); // or $client = new Client([]); $client->login('USERNAME', 'PASSWORD'); $lead = $client->getLead('ID');
License
This library is released under the MIT License.