halopsa_list_api_endpoints
Discover available API endpoints in HaloPSA with their paths, methods, and summaries. Use this tool to explore what endpoints are available before retrieving detailed information.
Instructions
List all API endpoints with their paths, methods, and summaries. Use this first to discover available endpoints, then use halopsa_get_api_endpoint_details for full details. Supports pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Optional category filter (e.g., "Tickets", "Actions", "Clients", "Sites") | |
| limit | No | Maximum number of endpoints to return (default: 100) | |
| skip | No | Number of endpoints to skip for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Optional category filter (e.g., \"Tickets\", \"Actions\", \"Clients\", \"Sites\")",
"type": "string"
},
"limit": {
"default": 100,
"description": "Maximum number of endpoints to return (default: 100)",
"type": "number"
},
"skip": {
"default": 0,
"description": "Number of endpoints to skip for pagination (default: 0)",
"type": "number"
}
},
"type": "object"
}