search_configuration_items
Search for configuration items in Autotask using filters like company, product, or active status to locate specific assets and resources.
Instructions
Search for configuration items in Autotask with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyID | No | Filter by company ID | |
isActive | No | Filter by active status | |
pageSize | No | Number of results to return (default: 25, max: 500) | |
productID | No | Filter by product ID | |
searchTerm | No | Search term for configuration item name |
Input Schema (JSON Schema)
{
"properties": {
"companyID": {
"description": "Filter by company ID",
"type": "number"
},
"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"
},
"productID": {
"description": "Filter by product ID",
"type": "number"
},
"searchTerm": {
"description": "Search term for configuration item name",
"type": "string"
}
},
"required": [],
"type": "object"
}