1. Go to this page and download the library: Download shusaura85/fancourier-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/ */
shusaura85 / fancourier-api example snippets
$clientId = 'your_client_id';
$username = 'your_username';
$password = 'your_password';
$token = 'load from cache or leave as empty string';
$fan = new Fancourier\Fancourier($clientId, $username, $password, $token);
$request = new Fancourier\Request\GetCosts();
$request
->setParcels(1)
->setWeight(1)
->setCounty('Arad')
->setCity('Aciuta')
->setDeclaredValue(125);
if ($response->isOk()) {
var_dump($response->getData()); // raw data
// or just the information you want
echo "extraKmCost: ". $response->getKmCost().'<br />';
echo "weightCost: ". $response->getWeightCost().'<br />';
echo "insuranceCost: ". $response->getInsuranceCost().'<br />';
echo "optionsCost: ". $response->getOptionsCost().'<br />';
echo "fuelCost: ". $response->getFuelCost().'<br />';
echo "costNoVAT: ". $response->getCost().'<br />';
echo "vat: ". $response->getCostVat().'<br />';
echo "total: ".$response->getCostTotal().'<br />';
} else {
var_dump($response->getErrorMessage());
print_r($response->getAllErrors());
}
$awb = new Fancourier\Objects\AwbIntern();
$awb
->setService('Cont Colector')
->setPaymentType(Fancourier\Request\CreateAwb::TYPE_SENDER)
->setParcels(1)
->setWeight(1) // in kg
->setReimbursement(199.99) // suma de incasat
->setDeclaredValue(1000)
->setSizes(10,5,1) // in cm
->setNotes('testing notes')
->setContents('SKU-1, SKU-2')
->setRecipientName("John Ivy")
->setPhone('0723000000')
->setCounty('Arad')
->setCity('Aciuta')
->setStreet('Str Lunga')
->setNumber(1)
->addOption('S')
->addOption('X');
$request = new Fancourier\Request\CreateAwb();
$request->addAwb($awb);
$response = $fan->createAwb($request);
if ($response->isOk()) {
var_dump($response->getData()); // raw data
// or the AWBIntern objects updated with the response information
$al = $response->getAll();
echo "Count: ".count($al)."<br />";
foreach ($al as $awbr)
{
if ($awbr->hasErrors())
{
print_r($awbr->getErrors());
}
else
{
echo "AWB: ".$awbr->getAwb()."<br />";
}
}
} else {
var_dump($response->getErrorMessage());
}
$request = new Fancourier\Request\CreateAwb();
// create the first awb
$awb = new Fancourier\Objects\AwbIntern();
$awb
->setService('Cont Colector')
....
->addOption('X');
// add it to the request
$request->addAwb($awb);
// create another awb
$awb = new Fancourier\Objects\AwbIntern();
$awb
->setService('Cont Colector')
....
->addOption('X');
// add it to the request
$request->addAwb($awb);
// create another awb
$awb = new Fancourier\Objects\AwbIntern();
$awb
->setService('Cont Colector')
....
->addOption('X');
// add it to the request
$request->addAwb($awb);
$response = $fan->createAwb($request);
if ($response->isOk()) {
var_dump($response->getData()); // raw data
// or the AWBIntern objects updated with the response information
$al = $response->getAll();
echo "Count: ".count($al)."<br />";
foreach ($al as $awbr)
{
if ($awbr->hasErrors())
{
print_r($awbr->getErrors());
}
else
{
echo "AWB: ".$awbr->getAwb()."<br />";
}
}
} else {
var_dump($response->getErrorMessage());
}
$request = new Fancourier\Request\TrackAwb();
$request
->setAwb('2150900120086');
$response = $fan->trackAwb($request);
if ($response->isOk()) {
print_r($response->getData()); // raw data
print_r($response->getAll()); // array of AwbTracker objects
} else {
var_dump($response->getErrorMessage());
}
$request = new Fancourier\Request\TrackAwb();
$request
->addAwb('2150900120084')
->addAwb('2150900120085')
->addAwb('2150900120086');
$response = $fan->trackAwb($request);
if ($response->isOk()) {
print_r($response->getData()); // raw data
print_r($response->getAll()); // array of AwbTracker objects
} else {
var_dump($response->getErrorMessage());
}
$request = new Fancourier\Request\GetPudo();
$request
->setType(Fancourier\Request\GetPudo::PUDO_FANBOX);
$response = $fan->getPudo($request);
if ($response->isOk()) {
print_r($response->getData()); // raw data
print_r($response->getAll()); // array of PUDO objects
} else {
var_dump($response->getErrorMessage());
}
$request = new Fancourier\Request\PrintAwb();
$request
->setPdf(true)
->setAwb('2150900120086');