search_resources
Find users in Autotask by name or email with filters for active status and employee type (Employee, Contractor, Temporary).
Instructions
Search for resources (users) 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: 25, max: 500) | |
resourceType | No | Filter by resource type (1=Employee, 2=Contractor, 3=Temporary) | |
searchTerm | No | Search term for resource name or email |
Input Schema (JSON Schema)
{
"properties": {
"isActive": {
"description": "Filter by active status",
"type": "boolean"
},
"pageSize": {
"description": "Number of results to return (default: 25, max: 500)",
"maximum": 500,
"minimum": 1,
"type": "number"
},
"resourceType": {
"description": "Filter by resource type (1=Employee, 2=Contractor, 3=Temporary)",
"type": "number"
},
"searchTerm": {
"description": "Search term for resource name or email",
"type": "string"
}
},
"required": [],
"type": "object"
}