1. Go to this page and download the library: Download tourware/sdk-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/ */
tourware / sdk-php example snippets
// First, instantiate the SDK with your x-api-key API credentials
$client = Client::create(xApiKey: 'xxxxxxx'); // For staging
$client = Client::create(xApiKey: 'xxxxxxx', staging: false); // For production
// Now, get a Travel by it's id
$travel = $client->travels()->find('60feacb365f5f1002750c2b2');
use Tourware\Entities\Travel;
// By using helper method
$travel = $client->travel()->find();
// By using the entity class
$travel = $client->entity(new Travel)->find();
// Or by using the raw endpoint
$travel = $client->raw('travels')->find();
// Create a new travel
$response = $client->travel()->create([...]);
// Find a travel
$response = $client->travel()->find('bba0b42e4699');
// Update an existing travel
$response = $client->travel()->update('bba0b42e4699', [...]);
// List all travels
$response $client->travel()->list(offset: 0, limit: 50);
// List specific travel
$response = $client->travel()->delete('bba0b42e4699');
$travels = $client->travel()->query()->filter('title')->contains('kenya')->get();
//The the first name for the resposible user
$travels->get('records.0.responsibleUser.firstname');
use Tourware\Operator\Contains;
// By using the query builder
$travels = $client->travel()->query()->filter('title')->contains('kenya')->get();
// By using the filter class
$travels = $client->travel()->query()->addFilter(new Contains('title', 'kenya'))->get();
// By using raw filter
$client->travel()->query()->addRawFilter(['property' => 'title', 'operator' => 'contains', 'value' => 'kenya'])->get();
use Tourware\Orders\Asc;
// By using the sort builder
$travels = $client->travel()->query()->sort('id')->asc()->get();
// By using the sort class
$travels = $client->travel()->query()->addSort(new Asc('id'))->get();
// By using raw sort
$travels = $client->travel()->query()->addRawSort(['property' => 'id', 'direction' => 'asc'])->get();