PHP code example of numinc / logzi-php-sdk

1. Go to this page and download the library: Download numinc/logzi-php-sdk 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/ */

    

numinc / logzi-php-sdk example snippets



$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);

composer