anakadote / bamlt-v2
Send a lead to the BAM LeadTracker v2 API.
Installs: 91
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/anakadote/bamlt-v2
Requires
- php: >=7.1.0
README
Send a lead to the BAM LeadTracker v2 API.
Begin by installing this package through Composer via the terminal.
composer require anakadote/bamlt-v2
Usage
There is one public method available, send(array $input)
use Anakadote\BAMLTV2\BAMLTV2;
$bamlt = new BAMLTV2(BAMLT_API_KEY);
$bamlt->send([
'firstName' => 'Taylor',
'lastName' => 'Collins',
'postalCode' => 15243,
'phone' => '4125551212',
]);