QuickBooks
QUICKBOOKS_LIST_INVOICES
Tool to list invoices via QuickBooks Query endpoint. Use when retrieving invoices with optional pagination and custom fields.
Remote quickbooks
Remote (network-hosted)
Other tools also called QUICKBOOKS_LIST_INVOICES?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string",
"properties": {}
},
"title": "Fields",
"default": null,
"examples": [
[
"Id",
"DocNumber",
"TotalAmt"
]
],
"nullable": true,
"description": "List of fields to select in the query. Defaults to ['Id','SyncToken','DocNumber','TotalAmt','Balance','TxnDate']."
},
"max_results": {
"type": "integer",
"title": "Max Results",
"default": 50,
"maximum": 1000,
"minimum": 1,
"examples": [
50
],
"description": "Maximum number of records to return; default 50, max 1000."
},
"start_position": {
"type": "integer",
"title": "Start Position",
"default": 1,
"minimum": 1,
"examples": [
1
],
"description": "Starting position for pagination within the result set. Default is 1."
}
}
}