The autoZnetwork PHP SDK
We've created an easy-to-use open source PHP package that allows you to communicate with the autoZnetwork API. It provides some convenient models and methods to quickly get started.
The API itself is a REST API. If you're unfamiliar with it, we suggest you read through the API documentation first, it'll make things a lot clearer.
If you want to dive straight in, here's what we suggest;
Read the getting started guide guide for the SDK. This will get the package installed and configure your API keys.
Start managing your vehicles via the SDK (get data, add a new vehicle, remove a vehicle). Once you've got that going, you're all set.
Getting started
We offer a PHP SDK package that is ready for use. It's open source and we happily accept contributions to it.
First, grab the latest stable version via composer.
composer require autoznetwork/autoznetwork-php-sdk
Next, create an instance of the SDK. This takes your API key as a single, mandatory, parameter. If you don't have an API key yet, read up on the API authentication first first.
$apiKey = "iK4YfZe2i1RAe22tKP4xejGKDZP .... ";
$autoZnetwork = new AutozNetwork\AutozNetwork($apiKey);