An open API service indexing awesome lists of open source software.

https://github.com/activecollab/quickbooks

QuickBooks API Wrapper
https://github.com/activecollab/quickbooks

Last synced: about 1 year ago
JSON representation

QuickBooks API Wrapper

Awesome Lists containing this project

README

          

#Quickbooks

[![Build Status](https://travis-ci.org/activecollab/quickbooks.svg?branch=master)](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'
);
```