get_expense_report
Retrieve specific expense report details by ID from Autotask PSA to track costs, review expenses, and manage financial records.
Instructions
Get a specific expense report by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reportId | Yes | The expense report ID to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"reportId": {
"description": "The expense report ID to retrieve",
"type": "number"
}
},
"required": [
"reportId"
],
"type": "object"
}