Super-simple, minimum abstraction Oblio API wrapper, in PHP
Use the package manager composer to install the Oblio API Wrapper.
composer require mrbig00/oblio-php-api-client
$client = new \mrbig00\Oblio\Api\Client(
'[email protected]',
'clientSecret'
);
$client->getCompanies(['cif' => 'YOUR_CIF']);
$client->getVatRates(['cif' => 'YOUR_CIF']);
- getClients
- getProducts
- getSeries
- getLanguages
- getManagement
- getVatRates
- addProforma
- addNotice
- addInvoice
- getInvoice
- getProforma
- getNotice
- cancelInvoice
- cancelProforma
- cancelNotice
- deleteInvoice
- deleteProforma
- deleteNotice
- restoreInvoice
- restoreProforma
- restoreNotice
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.