real-intel / api-wrapper
This is a wrapper for the Data Highlights / Real Intel API Suite
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/real-intel/api-wrapper
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-12-05 22:57:14 UTC
README
A wrapper library for integration with the Real Intel API
Installation
This library can be installed to your php project using composer
composer require real-intel/api-wrapper
In order to use this library you need to initialise it using your Real Intel credentials:
$wrapper = new RealIntelDelegate([
'api_key' => 'Your-API-Key',
'customer_id' => 'Your-Customer-ID',
'sandbox' => true,
'show_notes' => true
]);
Once initialised you can make calls to the class as follows:
$consumer = $wrapper->doConsumerTraceLite("Consumer-ID-Number", "Consumer-Last-Name", "Your-Unique-Reference");
There are multiple calls to be made, so the Real Intel API Documentation can be used for reference.
NOTE: Not all API calls are available yet in this libary and will be added at a later stage. If you require a call, please contact us.