mrbig00 / oblio-php-client
Oblio PHP API Client
dev-master
2021-11-08 18:01 UTC
Requires
- php: >=7.2.0
- ext-json: *
- guzzlehttp/guzzle: ~6|~7
- guzzlehttp/guzzle-services: ^1.1
- kamermans/guzzle-oauth2-subscriber: ~1.0
This package is auto-updated.
Last update: 2025-05-09 02:05:41 UTC
README
Super-simple, minimum abstraction Oblio API wrapper, in PHP
Installation
Use the package manager composer to install the Oblio API Wrapper.
composer require mrbig00/oblio-php-api-client
Usage
$client = new \mrbig00\Oblio\Api\Client( 'batman@superman.com', 'clientSecret' ); $client->getCompanies(['cif' => 'YOUR_CIF']); $client->getVatRates(['cif' => 'YOUR_CIF']);
Available methods
- getClients
- getProducts
- getSeries
- getLanguages
- getManagement
- getVatRates
- addProforma
- addNotice
- addInvoice
- getInvoice
- getProforma
- getNotice
- cancelInvoice
- cancelProforma
- cancelNotice
- deleteInvoice
- deleteProforma
- deleteNotice
- restoreInvoice
- restoreProforma
- restoreNotice
Contributing
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.