PHP code example of ediasoft / tyre24-api-php
1. Go to this page and download the library: Download ediasoft/tyre24-api-php 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/ */
ediasoft / tyre24-api-php example snippets
use eDiasoft\Tyre24\Tyre24Client;
$client = Tyre24Client::authenticate(env('TYRE24_USER'), env('TYRE24_PASSWORD'));
//Retrieve latest orders
$latestOrders = $client->orders->latestOrders('de');