PHP code example of softwarepunt / psinfoodservice-api-client
1. Go to this page and download the library: Download softwarepunt/psinfoodservice-api-client 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/ */
softwarepunt / psinfoodservice-api-client example snippets
use SoftwarePunt\PSAPI\Client;
sername("[email protected]");
$client->setPassword("************");
$client->setTimeout(30);
// Example of structure - the code route for "api/Product/Search" call:
$client->product()->search();
use SoftwarePunt\PSAPI\Models\Params\ProductSearchParams;
$searchParams = new ProductSearchParams();
$searchParams->ShowAllProductSet = true;
$searchParams->ShowSubscribedProductSet = true; // must be set to explicitly
shell
php cli/xsdgen.php path/to/PS_XSD.xsd