1. Go to this page and download the library: Download flick/flick-php-sdk 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/ */
flick / flick-php-sdk example snippets
use Flick\FlickPhpSdk\Bills;
use Flick\FlickPhpSdk\Config;
// Initialize the Bills class with your API key and specify the environment ('sandbox' or 'production')
$bills = new Bills(new Config('sandbox', 'your-api-key-here'));
$egs_data = [ /* your EGS data goes here*/ ]
$response = $bills->onboard_egs($egsData)->wait();
print($response->getBody()->getContents());
$invoice_data = [ /* your Invoice data goes here*/ ]
$response = $bills->generate_invoice($egsData)->wait();
print($response->getBody()->getContents());
// Include the necessary dependencies
use Flick\FlickPhpSdk\Bills;
use Flick\FlickPhpSdk\Config;
// Initialize the Bills class with your API key and specify the environment ('sandbox' or 'production')
$bills = new Bills(new Config('sandbox', 'your-api-key-here'));
// Define the data for onboarding EGS
$egsData = [
'vat_name' => 'Test Co.',
'vat_number' => '300000000000003',
'devices' => [
[
'device_name' => 'TestEGS1',
'city' => 'Riyadh',
'city_subdiv' => 'Test Dist.',
'street' => 'Test St.',
'plot' => '1234',
'building' => '1234',
'postal' => '12345',
'branch_name' => 'Riyad Branch 1',
// This will be a 10-digit TIN if you are onboarding a VAT-Group Member
'branch_industry' => 'Retail',
'otp' => '123321',
],
[
'device_name' => 'TestEGS2',
'city' => 'Riyadh',
'city_subdiv' => 'Test Dist.',
'street' => 'Test St.',
'plot' => '1234',
'building' => '1234',
'postal' => '12345',
'branch_name' => 'Riyad Branch 2',
// This will be a 10-digit TIN if you are onboarding a VAT-Group Member
'branch_industry' => 'Retail',
'otp' => '321123',
],
],
];
// Perform the EGS onboarding operation asynchronously and handle the result or error
$promise = $bills->onboard_egs($egsData);
$promise->then(function ($result) {
// Handle the successful result
print($result);
})->otherwise(function ($exception) {
// Handle the error
print($exception->getResponse()->getBody()->getContents());
})->wait();
nclude the necessary dependencies
use Flick\FlickPhpSdk\Bills;
use Flick\FlickPhpSdk\Config;
// Initialize the Bills class with your API key and specify the environment ('sandbox' or 'production')
$bills = new Bills(new Config('sandbox', 'your-api-key-here'));
// Define the data for generating invoice
$invoiceData = [
'egs_uuid' => '7b9cc231-0e14-4bff-938c-4603fe10c4bc',
'invoice_ref_number' => 'INV-5',
'issue_date' => '2023-01-01',
'issue_time' => '01:40:40',
'party_details' => [
'party_name_ar' => 'شركة اختبار',
'party_vat' => '300001111100003',
'party_add_id' => [
'crn' => 45463464,
],
'city_ar' => 'جدة',
'city_subdivision_ar' => 'حي الشرفية',
'street_ar' => 'شارع الاختبار',
'plot_identification' => '1234',
'building' => '1234',
'postal_zone' => '12345',
],
'doc_type' => '388',
'inv_type' => 'standard',
'payment_method' => 10,
'currency' => 'SAR',
'total_tax' => 142.0,
'has_advance' => true,
'advance_details' => [
'advance_amount' => 575,
'total_amount' => 2875,
'advance_invoices' => [
[
'tax_category' => 'S',
'tax_percentage' => 0.15,
'taxable_amount' => 500,
'tax_amount' => 75,
'invoices' => [
[
'id' => 'INV-1',
'issue_date' => '2022-12-10',
'issue_time' => '12:28:17',
],
],
],
],
],
'lineitems' => [
[
'name_ar' => 'متحرك',
'quantity' => 1,
'tax_category' => 'S',
'tax_exclusive_price' => 750,
'tax_percentage' => 0.15,
],
[
'name_ar' => 'حاسوب محمول',
'quantity' => 1,
'tax_category' => 'S',
'tax_exclusive_price' => 1750,
'tax_percentage' => 0.15,
],
],
];
// Perform the EGS onboarding operation asynchronously and handle the result or error
$promise = $bills->generate_invoice($invoiceData);
$promise->then(function ($result) {
// Handle the successful result
print($result);
})->otherwise(function ($exception) {
// Handle the error
print($exception->getResponse()->getBody()->getContents());
})->wait();
bash
composer
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.