https://github.com/activecollab/quickbooks
QuickBooks API Wrapper
https://github.com/activecollab/quickbooks
Last synced: about 1 year ago
JSON representation
QuickBooks API Wrapper
- Host: GitHub
- URL: https://github.com/activecollab/quickbooks
- Owner: activecollab
- License: mit
- Created: 2015-06-04T11:25:59.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-12-17T11:02:31.000Z (over 6 years ago)
- Last Synced: 2025-03-30T13:03:29.058Z (about 1 year ago)
- Language: PHP
- Size: 107 KB
- Stars: 14
- Watchers: 10
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#Quickbooks
[](https://travis-ci.org/activecollab/quickbooks)
## Usage
### Authentication
```php
$quickbooks = new ActiveCollab\Quickbooks\Quickbooks([
'identifier' => 'example-consumer-key',
'secret' => 'example-consumer-key-secret',
'callback_uri' => 'http://example.com'
]);
```
### Sandbox
```php
$sandbox = new ActiveCollab\Quickbooks\Sandbox(
'example-consumer-key',
'example-consumer-key-secret',
'example-access-token',
'example-access-token-secret',
'example-realmId'
);
```
### Querying API
```php
$dataService = new ActiveCollab\Quickbooks\DataService(
'example-consumer-key',
'example-consumer-key-secret',
'example-access-token',
'example-access-token-secret',
'example-realmId'
);
```