GitHub Page
Documentation Page
This is a PHP library for MeridianLink's SmartAPI interface.
This library should be used only after a review of the SmartAPI Integration Guide. The integration guide covers basic knowledge the software developer should have before starting their project. After reviewing the guide, this library can be used to expedite the integration process.
The SmartAPI Integration Guide, which is included in the integration kit, can be obtained by reaching out to MeridianLink directly.
- PHP 7.1.0 or higher
- Extension: cURL
- Extension: OpenSSL
- Extension: XML
To install using composer:
composer require jafrajarvy292/smartapihelper
If composer's autoload file is already included in your project, then this library will automatically be loaded.
Download the latest release and and extract to its own folder. Afterwards, require the autoloader file.
For example, if you saved this to a folder named smartapihelper
, then your require statement should look something like the following:
require "smartapihelper/autoload.php";
Look through the samples
folder for examples of using this library.