anakadote/bamlt-v2

Send a lead to the BAM LeadTracker v2 API.

1.0.3 2023-04-04 21:19 UTC

This package is auto-updated.

Last update: 2024-04-04 23:22:09 UTC


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',
]);