Modules@robinpath/freshbooks

@robinpath/freshbooks

0.1.0Public

FreshBooks module for RobinPath.

@robinpath/freshbooks

FreshBooks module for RobinPath.

Category Functions Auth License

Why use this module?

The freshbooks module lets you:

  • listClients
  • getClient
  • createClient
  • updateClient
  • listInvoices

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

Installation

npm install @robinpath/freshbooks

Quick Start

1. Set up credentials

freshbooks.setCredentials "your-credentials"

2. listClients

freshbooks.listClients

Available Functions

FunctionDescription
freshbooks.setCredentialsConfigure freshbooks credentials.
freshbooks.listClientslistClients
freshbooks.getClientgetClient
freshbooks.createClientcreateClient
freshbooks.updateClientupdateClient
freshbooks.listInvoiceslistInvoices
freshbooks.getInvoicegetInvoice
freshbooks.createInvoicecreateInvoice
freshbooks.updateInvoiceupdateInvoice
freshbooks.sendInvoicesendInvoice
freshbooks.listExpenseslistExpenses
freshbooks.getExpensegetExpense
freshbooks.createExpensecreateExpense
freshbooks.listTimeEntrieslistTimeEntries
freshbooks.createTimeEntrycreateTimeEntry
freshbooks.listPaymentslistPayments
freshbooks.createPaymentcreatePayment
freshbooks.getUsergetUser
freshbooks.getAccountgetAccount

Examples

listClients

freshbooks.listClients

getClient

freshbooks.getClient

createClient

freshbooks.createClient

Integration with RobinPath

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

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

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

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.0latestyesterday
Install
$ robinpath install @robinpath/freshbooks
Version0.1.0
LicenseMIT
Unpacked Size4.6 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

Category

sales