Modules@robinpath/quickbooks

@robinpath/quickbooks

0.1.1Public

QuickBooks module for RobinPath.

@robinpath/quickbooks

QuickBooks module for RobinPath.

Category Functions Auth License

Why use this module?

The quickbooks module lets you:

  • query
  • getInvoice
  • createInvoice
  • sendInvoice
  • voidInvoice

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

npm install @robinpath/quickbooks

Quick Start

1. Set up credentials

quickbooks.setCredentials "your-credentials"

2. query

quickbooks.query

Available Functions

FunctionDescription
quickbooks.setCredentialsConfigure quickbooks credentials.
quickbooks.queryquery
quickbooks.getInvoicegetInvoice
quickbooks.createInvoicecreateInvoice
quickbooks.sendInvoicesendInvoice
quickbooks.voidInvoicevoidInvoice
quickbooks.getCustomergetCustomer
quickbooks.createCustomercreateCustomer
quickbooks.updateCustomerupdateCustomer
quickbooks.listCustomerslistCustomers
quickbooks.getPaymentgetPayment
quickbooks.createPaymentcreatePayment
quickbooks.getExpensegetExpense
quickbooks.createExpensecreateExpense
quickbooks.getItemgetItem
quickbooks.createItemcreateItem
quickbooks.listItemslistItems
quickbooks.getCompanyInfogetCompanyInfo
quickbooks.getReportgetReport
quickbooks.listAccountslistAccounts
quickbooks.createBillcreateBill

Examples

query

quickbooks.query

getInvoice

quickbooks.getInvoice

createInvoice

quickbooks.createInvoice

Integration with RobinPath

import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/quickbooks";

const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);

const result = await rp.executeScript(`
  quickbooks.setCredentials "your-credentials"
  quickbooks.query
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

Related Modules

License

MIT

Versions (1)

VersionTagPublished
0.1.1latestyesterday
Install
$ robinpath install @robinpath/quickbooks
Version0.1.1
LicenseMIT
Unpacked Size4.7 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

Category

sales