search_expense_reports
Search for expense reports using filters like submitter, status, or page size to quickly find and review financial documentation in Autotask.
Instructions
Search for expense reports with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageSize | No | Number of results to return (default: 25, max: 100) | |
status | No | Filter by status (1=New, 2=Submitted, 3=Approved, 4=Paid, 5=Rejected, 6=InReview) | |
submitterId | No | Filter by submitter resource ID |
Input Schema (JSON Schema)
{
"properties": {
"pageSize": {
"description": "Number of results to return (default: 25, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"status": {
"description": "Filter by status (1=New, 2=Submitted, 3=Approved, 4=Paid, 5=Rejected, 6=InReview)",
"type": "number"
},
"submitterId": {
"description": "Filter by submitter resource ID",
"type": "number"
}
},
"required": [],
"type": "object"
}