1. Go to this page and download the library: Download fakturoid/fakturoid-php 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/ */
fakturoid / fakturoid-php example snippets
new \GuzzleHttp\Client(['headers' => ['User-Agent' => 'Bar']])
(new \Symfony\Component\HttpClient\Psr18Client())->withOptions([['headers' => ['User-Agent' => 'Bar']]))
$fManager = new \Fakturoid\FakturoidManager(
\Psr\Http\Client\ClientInterface, // see User agent and HTTP client above
'{fakturoid-client-id}',
'{fakturoid-client-secret}',
null,
'{your-redirect-uri}'
);
echo '<a href="' . $fManager->getAuthenticationUrl() . '">Link</a>';
$fManager = new \Fakturoid\FakturoidManager(
\Psr\Http\Client\ClientInterface, // see User agent and HTTP client above
'{fakturoid-client-id}',
'{fakturoid-client-secret}'
);
$fManager->authClientCredentials();
$fManager->setCredentialsCallback(new class implements \Fakturoid\Auth\CredentialCallback {
public function __invoke(?\Fakturoid\Auth\Credentials $credentials = null): void
{
// Save credentials to database or another storage
}
});
$fManager = new \Fakturoid\FakturoidManager(
\Psr\Http\Client\ClientInterface, // see User agent and HTTP client above
'{fakturoid-client-id}',
'{fakturoid-client-secret}'
);
// restore credentials from storage
$credentials = new \Fakturoid\Auth\Credentials(
'refreshToken',
'accessToken',
(new DateTimeImmutable())->modify('-2 minutes'),
\Fakturoid\Enum\AuthTypeEnum::AUTHORIZATION_CODE_FLOW // or \Fakturoid\Enum\AuthTypeEnum:CLIENT_CREDENTIALS_CODE_FLOW
);
$fManager->getAuthProvider()->setCredentials($credentials);
$fManager->setCredentialsCallback(new class implements \Fakturoid\Auth\CredentialCallback {
public function __invoke(?\Fakturoid\Auth\Credentials $credentials = null): void
{
// Save credentials to database or another storage
}
});
$fManager = new \Fakturoid\FakturoidManager(
\Psr\Http\Client\ClientInterface, // see User agent and HTTP client above
'{fakturoid-client-id}',
'{fakturoid-client-secret}',
'{fakturoid-account-slug}',
);
$fManager->authClientCredentials();
$fManager->getBankAccountsProvider()->list();
// switch account and company
$fManager->setAccountSlug('{fakturoid-account-slug-another}');
$fManager->getBankAccountsProvider()->list();
$fManager = new \Fakturoid\FakturoidManager(
\Psr\Http\Client\ClientInterface, // see User agent and HTTP client above
'{fakturoid-client-id}',
'{fakturoid-client-secret}'
);
$fManager->authClientCredentials();
// get current user
$user = $fManager->getUsersProvider()->getCurrentUser();
$fManager->setAccountSlug($user->getBody()->accounts[0]->slug);
// or you can set account slug manually
$fManager->setAccountSlug('{fakturoid-account-slug}');
// create subject
$response = $fManager->getSubjectsProvider()->create(['name' => 'Firma s.r.o.', 'email' => '[email protected]']);
$subject = $response->getBody();
// create invoice with lines
$lines = [['name' => 'Big sale', 'quantity' => 1, 'unit_price' => 1000]];
$response = $fManager->getInvoicesProvider()->create(['subject_id' => $subject->id, 'lines' => $lines]);
$invoice = $response->getBody();
// send by mail
$fManager->getInvoicesProvider()->createMessage($invoice->id, ['email' => '[email protected]']);
// to mark invoice as paid and send thank you email
$fManager->getInvoicesProvider()->createPayment($invoice->id, ['paid_on' => (new \DateTime())->format('Y-m-d'), 'send_thank_you_email' => true]);
// lock invoice (other fire actions are described in the API documentation)
$fManager->getInvoicesProvider()->fireAction($invoice->id, 'lock');
$invoiceId = 123;
// This is just an example, you may want to do this in a background job and be more defensive.
while (true) {
$response = $fManager->getInvoicesProvider()->getPdf($invoiceId);
if ($response->getStatusCode() == 200) {
$data = $response->getBody();
file_put_contents("{$invoiceId}.pdf", $data);
break;
}
sleep(1);
}