activecollab/qbo-wrapper

Quickbooks online API wrapper

2.0.5 2019-12-17 11:01 UTC

This package is auto-updated.

Last update: 2024-04-17 20:19:23 UTC


README

#Quickbooks

Build Status

Usage

Authentication

$quickbooks = new ActiveCollab\Quickbooks\Quickbooks([
    'identifier'    => 'example-consumer-key',
    'secret'        => 'example-consumer-key-secret',
    'callback_uri'  => 'http://example.com'
]);

Sandbox

$sandbox = new ActiveCollab\Quickbooks\Sandbox(
    'example-consumer-key',
    'example-consumer-key-secret',
    'example-access-token',
    'example-access-token-secret',
    'example-realmId'
);

Querying API

$dataService = new ActiveCollab\Quickbooks\DataService(
    'example-consumer-key',
    'example-consumer-key-secret',
    'example-access-token',
    'example-access-token-secret',
    'example-realmId'
);