autotask_raw_request
Send raw HTTP requests to Autotask REST API for custom endpoints lacking typed tool support. Automatic headers and base URL resolution included.
Instructions
Escape hatch for Autotask REST endpoints not yet wrapped by a typed tool. Use sparingly — typed tools are preferred for safety. The existing Content-Type, Accept, ApiIntegrationcode, UserName, Secret headers are added automatically. The path is resolved against the zone-resolved base URL (https://webservices.autotask.net/ATServicesRest/v1.0). Pass queryParams as a flat object of string/number/boolean values; they will be URL-encoded and appended to the path.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Optional JSON body for POST/PATCH requests | |
| path | Yes | Path under the Autotask REST v1.0 base (e.g. "/Companies/175" or "/Companies/query") | |
| method | Yes | HTTP method | |
| queryParams | No | Optional flat key-value query parameters (e.g. { includeFields: "id,name" }) |