numinc/logzi-php-sdk

A PHP wrapper for the Logzi ERP REST API

v1.0 2023-10-16 10:53 UTC

This package is auto-updated.

Last update: 2024-09-18 00:16:48 UTC


README

logzi-php-sdk is a PHP library for logzi ERP.

Installation

composer require numinc/logzi-php-sdk:dev-master

Usage

require __DIR__ . '/vendor/autoload.php';

$booking_client = new Numinc\Logzi\Booking_model(array(
	"api_key" => "REPLACE_WITH_YOUR_API_KEY"
));

$booking_list = $booking_client->get_list(array(
	"list_offset" => 0,
	"list_condition" => array(
		// conditions
	),
));
print_r($booking_list);

Please find the API endpoints here.

Contributing

For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

FAQ

Terms and Conditions

Privacy Policies