1. Go to this page and download the library: Download billbee/billbee-api 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/ */
billbee / billbee-api example snippets
use BillbeeDe\BillbeeAPI\Client;
$user = 'Your Billbee username';
$apiPassword = 'Your Billbee API Password'; // https://app.billbee.io/de/settings/api
$apiKey = 'Your Billbee API Key';
$client = new Client($user, $apiPassword, $apiKey);
use BillbeeDe\BillbeeAPI\Client;
use BillbeeDe\BillbeeAPI\Response;
$user = 'Your Billbee username';
$apiPassword = 'Your Billbee API Password'; // https://app.billbee.io/de/settings/api
$apiKey = 'Your Billbee API Key';
$client = new Client($user, $apiPassword, $apiKey);
$client->enableBatchMode();
$client->products()->getProducts(1, 1); # Adds the request to the batch pool / returns null
$client->orders()->getOrders(1, 1); # Adds the request to the batch pool / returns null
$client->events()->getEvents(1, 1); # Adds the request to the batch pool / returns null
$results = $client->executeBatch(); # Results contain all responses in the added order
/** @var Response\GetProductsResponse $productsResult */
$productsResult = $results[0];
/** @var Response\GetOrdersResponse $ordersResult */
$ordersResult = $results[1];
/** @var Response\GetEventsResponse $eventsResult */
$eventsResult = $results[2];
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.