search_invoices
Find and filter Autotask invoices by company, invoice number, or voided status to quickly locate specific billing records.
Instructions
Search for invoices in Autotask with optional filters
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| companyID | No | Filter by company ID | |
| invoiceNumber | No | Filter by invoice number | |
| isVoided | No | Filter by voided status | |
| pageSize | No | Number of results to return (default: 25, max: 500) |
Input Schema (JSON Schema)
{
"properties": {
"companyID": {
"description": "Filter by company ID",
"type": "number"
},
"invoiceNumber": {
"description": "Filter by invoice number",
"type": "string"
},
"isVoided": {
"description": "Filter by voided status",
"type": "boolean"
},
"pageSize": {
"description": "Number of results to return (default: 25, max: 500)",
"maximum": 500,
"minimum": 1,
"type": "number"
}
},
"required": [],
"type": "object"
}