search_companies
Find companies in Autotask by name with optional filtering by active status and customizable result limits for efficient business management.
Instructions
Search for companies in Autotask with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
isActive | No | Filter by active status | |
pageSize | No | Number of results to return (default: 50, max: 200) | |
searchTerm | No | Search term for company name |
Input Schema (JSON Schema)
{
"properties": {
"isActive": {
"description": "Filter by active status",
"type": "boolean"
},
"pageSize": {
"description": "Number of results to return (default: 50, max: 200)",
"maximum": 200,
"minimum": 1,
"type": "number"
},
"searchTerm": {
"description": "Search term for company name",
"type": "string"
}
},
"required": [],
"type": "object"
}