drakakisgeo/billit
最新稳定版本:2.0.0
Composer 安装命令:
composer require drakakisgeo/billit
包简介
The php client for Billit.io API
README 文档
README
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.
Install
Via Composer
$ composer require drakakisgeo/billit
Laravel Framework
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();
Examples
List contacts
use Drakakisgeo\Billit\Billit; $client = new Billit('yourToken'); $client->contacts();
Get Account details
$client->myAccount();
Get Customers
$client->contacts();
Create contact
$client->contactCreate([ 'customerType' => 'company', 'company' => 'Awesome S.A.', 'inCharge' => 'Kalampakopoulos George', 'lang' => 'el', 'VatId'=>'075101010' ]);
Update contact
$client->contactUpdate([ 'customerType' => 'company', 'company' => 'Awesome S.A.', 'inCharge' => 'Kalampakopoulos George', 'lang' => 'el', 'VatId'=>'075101010' ]);
Get contact
$client->contactShow(1010);
Delete contact
$client->contactDelete(1010);
Create invoice
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.
Contributing
Please see CONTRIBUTING and CONDUCT for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 2.1k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-01-24