activecollab/qbo-wrapper

Quickbooks online API wrapper

Maintainers

Package info

github.com/activecollab/quickbooks

pkg:composer/activecollab/qbo-wrapper

Statistics

Installs: 56 070

Dependents: 0

Suggesters: 0

Stars: 15

Open Issues: 0

2.1.0 2025-09-09 18:54 UTC

This package is auto-updated.

Last update: 2026-02-10 08:16:41 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'
);