Expand description
A rust library for interacting with the QuickBooks API.
For more information, you can check out their documentation at: https://developer.intuit.com/app/developer/qbo/docs/develop
Example:
use quickbooks::QuickBooks;
use serde::{Deserialize, Serialize};
async fn list_purchases() {
// Initialize the QuickBooks client.
let quickbooks = QuickBooks::new_from_env("", "", "");
let purchases = quickbooks.list_purchases().await.unwrap();
println!("{:?}", purchases);
}
Structsยง
- APIError
- Error type returned by our library.
- Access
Token - Account
Based Expense Line Detail - Addr
- Any
- Attachable
Ref - Attachment
- Attachment
Response - Bill
- Bill
Payment - Bill
Payment Response - Bill
Response - Company
Info - Company
Info Response - Count
Response - Item
- Items
Response - Line
- Linked
Txn - Meta
Data - NtRef
- Payment
- Primary
Phone - Purchase
- Purchase
Ex - Purchase
Response - Query
Response - Quick
Books - Entrypoint for interacting with the QuickBooks API.
- WebAddr