izziaraffaele / zanox-php
PHP client for Zanox API
Installs: 5 432
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: >=5.5
- guzzlehttp/guzzle: ^6.1.1
Requires (Dev)
- phpunit/phpunit: ^5.2
This package is not auto-updated.
Last update: 2022-12-02 10:25:09 UTC
README
A very user-friendly PHP client for Zanox.
Requirements:
- PHP must be 5.5 or higher.
- Guzzle 6 as HTTP client.
Instalation
Use Composer.
Install Composer Globally (Linux / Unix / OSX):
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
Run this Composer command to install the latest stable version of the client, in the current folder:
composer require izziaraffaele/zanox-php
After installing, require Composer's autoloader and you're good to go:
<?php require 'vendor/autoload.php';
Getting Started
use Zanox\Api; // Initialize the API $api = new Api([ 'connectId' => 'your-connect-id', 'privateKey' => 'your-private-key' ],'https://api.zanox.com/json','2011-03-01'); // Get a specific resource ( ONLY REPORTS AVAILABLE FOR NOW ) $reports = $api->resource('reports'); $reports->getLeadsByDate( DateTime $date, array $query = null) $reports->getLeadsById( $id, array $query = null ) $reports->getSalesByDate( DateTime $date, array $query = null ) $reports->getSalesById( $id, array $query = null ) $reports->getBasic( DateTime $fromDate, DateTime $toDate, array $query = null)
Docs
Please refer to the source code for now, while a proper documentation is made.