ZDK for PHP of Zinobe API's
See the official documentation here
- Download and install composer here
- initialize composer in your project
composer init
- Install ZDK
composer require zinobe/zdk
include __DIR__ . "/vendor/autoload.php";
use Zinobe\Zdk\ClientServices;
$client = new ClientServices();
$api = $client->service("zevents");
$postdata = '{"identity":"1032498297"}';
$result = $api->download_profile($postdata);
print_r($result);