This PHP client can be used to connect with the billit.io API .
Note: Billit.io also has an integration with zapier.com, Contact us in order to give you access to our beta zapier app.
$ composer require drakakisgeo/billit
If you use the Laravel Framework you need to provide your Billit API key and Base url, so add a key to your config/services.php file as:
'billit' => [
'token' => env('BILLIT_API_TOKEN'),
'sandbox' => env('BILLIT_API_IS_SANDBOX'),
'version' => 'v1',
'timeout' => 2.0
]
To initialize the client is just a call as this:
$client = resolve('billit');
You can of course also use the Billit Facade like so
Billit::myAccount();
use Drakakisgeo\Billit\Billit;
$client = new Billit('yourToken');
$client->contacts();
$client->myAccount();
$client->contacts();
$client->contactCreate([
'customerType' => 'company',
'company' => 'Awesome S.A.',
'inCharge' => 'Kalampakopoulos George',
'lang' => 'el',
'VatId'=>'075101010'
]);
$client->contactUpdate([
'customerType' => 'company',
'company' => 'Awesome S.A.',
'inCharge' => 'Kalampakopoulos George',
'lang' => 'el',
'VatId'=>'075101010'
]);
$client->contactShow(1010);
$client->contactDelete(1010);
A full rather complicated example, MyData enabled
$client->invoiceCreate([
"customerId"=>694,
"sendMail"=> false,
"excludeMydata"=> true,
"invoiceDate"=>"2021-04-15",
"invoiceTypeId"=>349,
"isPaid" => true,
"mydataInvoiceType" => "2.1",
"taxes"=> [
[
"taxId"=> 514
],
[
"taxId"=> 524,
"taxVatShow"=> 1
]
],
"products"=> [
[
"productId"=> null,
"details"=> "test",
"measurementUnit"=> 1,
"vatId" => 376,
"price" => 123.32,
"quantity"=> 1,
"incomeClassificationCat"=>"category1_3",
"incomeClassificationType"=>"E3_561_001"
]
],
"tags" => ["billit","test-tag"],
"mydataPayment"=>[
"paidAmount"=> 0.32,
"paymentMethod"=> 3,
"epiPistosi"=> 10
]
]
);
Check the rest of the methods to src/Billit.php and the official API regarding the options that can be used in each case.
Please see CONTRIBUTING and CONDUCT for details.
The MIT License (MIT). Please see License File for more information.