databowl / databowl-vapi
A PHP client for the Databowl Validation API (VAPI)
Installs: 1 486
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 4
Open Issues: 2
Requires
- guzzlehttp/guzzle: ^7.0
This package is auto-updated.
Last update: 2025-01-19 23:54:56 UTC
README
Introduction
This package contains a PHP library to communicate with the Databowl's VAPI service.
Installation
The recommended way to install databowl/databowl-vapi is through Composer.
composer require databowl/databowl-vapi
Example
First create your client:
$configArray = [ 'privateKey' => '', 'publicKey' => '', ]; $config = \Databowl\Vapi\ClientConfig::createFromArray($configArray); $client = new \Databowl\Vapi\Client($config);
Then create your request and send it using the client:
$request = new \Databowl\Vapi\Validators\Hlr(); $request->setMobile('your-mobile-number'); $result = $client->sendRequest($request);
Further examples are available in the ./examples
folder.
Version History
This library has not yet been tagged for release.