anakadote / bamlt-v2
Send a lead to the BAM LeadTracker v2 API.
1.0.3
2023-04-04 21:19 UTC
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',
]);