samiaraboglu / alotech-php-api
Installs: 16 803
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: >=5.5
README
Installing
Via composer
$ composer require samiaraboglu/alotech-php-api
Authentication
$authentication = new AloTech\Authentication(); $authentication->setUsername('{USER_NAME}'); $authentication->setAppToken('{APP_TOKEN}'); $aloTech = new AloTech\AloTech($authentication);
Ping
Test method to check API status and connectivity.
$response = $aloTech->ping();
Login
Set user session key.
$aloTech->login('{EMAIL}');
Click 2
Use click2 service.
$click2 = new AloTech\Click2($aloTech);
Call
Used to trigger a call to given number.
$click2->call([ 'phonenumber' => '{PHONE_NUMBER}', 'hangup_url' => '{YOUR_HANGUP_URL}' ]);
Hang
Hangs up the active call of the agent.
$click2->hang();
Hold
Holds the active call of the agent.
$click2->hold();
Unhold
Unholds the active call of the agent.
$click2->unhold();
Report
Use report service.
$report = new AloTech\Report($aloTech);
Agent Performance
Returns agent performance information for the given period.
$report->agentPerf([ 'startdate' => '{Y-m-d}', // Optional 'finishdate' => '{Y-m-d}', // Optional 'agent' => '{AGENT}', // Optional 'email' => '{EMAIL}', // Optional 'agentcustomid' => '{AGENTCUSTOMID}', // Optional 'team' => '{TEAM}', // Optional ]);