QuickBooks
QUICKBOOKS_READ_INVOICE
Tool to fetch a QuickBooks invoice by ID or the most recent if no ID provided. Use when needing full invoice details including metadata and sync token.
Remote quickbooks
Remote (network-hosted)
Other tools also called QUICKBOOKS_READ_INVOICE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"invoice_id": {
"type": "string",
"title": "Invoice Id",
"default": null,
"examples": [
"12345"
],
"nullable": true,
"description": "ID of the invoice to read; if not provided, fetches the latest invoice"
},
"minorversion": {
"type": "integer",
"title": "Minorversion",
"default": null,
"examples": [
65
],
"nullable": true,
"description": "API minor version to use for the request"
}
}
}