mayoz / parasut
An easy-to-use Parasut's API with PHP.
Installs: 2 117
Dependents: 2
Suggesters: 0
Security: 0
Stars: 23
Watchers: 4
Forks: 12
Open Issues: 0
Requires
- php: >=5.5.9
- ext-curl: *
This package is auto-updated.
Last update: 2024-10-27 23:40:27 UTC
README
An easy-to-use Parasut's API with PHP.
Install
Via Composer
$ composer require mayoz/parasut
Usage
The following gateways are provided by this documentation:
<?php include 'vendor/autoload.php'; use Parasut\Client; // create a new client instance $parasut = new Client([ 'client_id' => 'YOUR-CLIENT-ID', 'client_secret' => 'YOUR-CLIENT-SECRET', 'username' => 'YOUR-USERNAME', 'password' => 'YOUR-PASSWORD', 'company_id' => 'YOUR-COMPANY-ID', 'grant_type' => 'password', 'redirect_uri' => 'urn:ietf:wg:oauth:2.0:oob', ]); // authorization request $parasut->authorize(); // create a new contact $contact = $parasut->make('contact')->create([ 'name' => 'ABC LTD. STI.', 'contact_type' => 'company', 'email' => 'user@example.com', 'tax_number' => '1234567890', 'tax_office' => 'Beyoglu', 'category_id' => null, 'address_attributes' => [ 'address' => 'Guzel Mahalle Istanbul', 'phone' => '123 123 4567' 'fax' => null, ], 'contact_people_attributes' => [ [ 'name' => 'Ahmet Bilir', 'phone' => '532 123 4567', 'email' => 'person@example.com', 'notes' => 'Muhasebe Sorumlusu', ], ], ]); // the contact token value $contactToken = $contact['contact']['id']; // create a new purchase bill $purchase = $parasut->make('purchase')->create([ 'description' => 'Büyük tedarikçi techizat alımı', 'invoice_id' => '1', 'invoice_series' => 'A', 'item_type' => 'invoice', 'issue_date' => '2016-01-15', 'contact_id' => $contactToken, 'category_id' => null, 'archived' => null, 'details_attributes' => [ [ 'product_id' => 9, // the parasut products 'quantity' => 1, 'unit_price' => 100, 'vat_rate' => 18, 'discount_type' => 'amount', 'discount_value' => 0, ], ], ]); // the billing token value $purchaseToken = $purchase['purchase_invoice']['id']; // pay the bill $paid = $parasut->make('purchase')->paid($purchaseToken, [ 'account_id' => 12, 'amount' => 118, 'exchange_rate' => '1.0' 'date' => '2016-01-20', 'description' => 'Your paid description', ]); var_dump($paid);
For general usage instructions, please see the main Parasut api documentation.
Security
If you discover any security related issues, please email srcnckr@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.