1. Go to this page and download the library: Download sypher/keez library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sypher / keez example snippets
use sypher\keez\KeezSDK;
$keez = new KeezSDK([
"client_id" => "a1b2c3d4e5f6g7h8i9j10k11l12m13n1",
"app_id" => "vendor-abcdefghijklmnopqrtuvxz",
"secret" => "abcdefghijklmnopqrstuvxzw"
], $devmode);
// searching for an Invoice with a specific serie and number, using array
$filter = [["series", "=", "SERIE"], ["number", 106]];
// searching for an Invoice with a specific serie and number, using string
$filter = "series[eq]:SERIE AND number[eq]:106";
// both versions have the same effect
$invoice = $keez->getInvoices($filter);
// searching for a specific Article by code
$filter = [["code", 'MY_SKU']];
$articles = $keez->getArticles($filter);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.