search_contacts
Find contacts in Autotask by name or email, with options to filter by company, active status, and result count for efficient contact management.
Instructions
Search for contacts in Autotask with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyID | No | Filter by company ID | |
isActive | No | Filter by active status (1=active, 0=inactive) | |
pageSize | No | Number of results to return (default: 50, max: 200) | |
searchTerm | No | Search term for contact name or email |
Input Schema (JSON Schema)
{
"properties": {
"companyID": {
"description": "Filter by company ID",
"type": "number"
},
"isActive": {
"description": "Filter by active status (1=active, 0=inactive)",
"type": "number"
},
"pageSize": {
"description": "Number of results to return (default: 50, max: 200)",
"maximum": 200,
"minimum": 1,
"type": "number"
},
"searchTerm": {
"description": "Search term for contact name or email",
"type": "string"
}
},
"required": [],
"type": "object"
}