DonMcNamara / quickbooks-go

A Go library for Intuit's QuickBooks Online API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

quickbooks-go

GoDoc

quickbooks-go is a Go library that provides access to Intuit's QuickBooks Online API.

NOTE: This library is very incomplete. I just implemented the minimum for my use case. Pull requests welcome :)

Example

// Do this after you go through the normal OAuth process.
var client = oauth2.NewClient(ctx, tokenSource)

// Initialize the client handle.
var qb = quickbooks.Client{
    Client: client,
    Endpoint: quickbooks.SandboxEndpoint,
    RealmID: "some company account ID"'
}

// Make a request!
var companyInfo, err = qb.FetchCompanyInfo()

License

BSD-2-Clause

About

A Go library for Intuit's QuickBooks Online API

License:BSD 2-Clause "Simplified" License


Languages

Language:Go 100.0%