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

1.0.3 2023-04-04 21:19 UTC

This package is auto-updated.

Last update: 2025-10-05 02:26:21 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',
]);