real-intel/api-wrapper

There is no license information available for the latest version (1.0.0) of this package.

This is a wrapper for the Data Highlights / Real Intel API Suite

1.0.0 2020-12-08 12:11 UTC

This package is auto-updated.

Last update: 2024-10-05 20:33:27 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.