search_contracts
Find contracts in Autotask using search terms and filters for company ID, status, and result count to locate specific agreements.
Instructions
Search for contracts in Autotask with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyID | No | Filter by company ID | |
pageSize | No | Number of results to return (default: 25, max: 500) | |
searchTerm | No | Search term for contract name | |
status | No | Filter by contract status (1=In Effect, 3=Terminated) |
Input Schema (JSON Schema)
{
"properties": {
"companyID": {
"description": "Filter by company ID",
"type": "number"
},
"pageSize": {
"description": "Number of results to return (default: 25, max: 500)",
"maximum": 500,
"minimum": 1,
"type": "number"
},
"searchTerm": {
"description": "Search term for contract name",
"type": "string"
},
"status": {
"description": "Filter by contract status (1=In Effect, 3=Terminated)",
"type": "number"
}
},
"required": [],
"type": "object"
}