halopsa_search_api_endpoints
Search HaloPSA API endpoints using keywords to find relevant paths, summaries, and descriptions for integration and data access.
Instructions
Search for API endpoints by keywords. Returns matching endpoints with basic info. Use halopsa_get_api_endpoint_details for full details of specific endpoints. Supports pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query to find endpoints (searches in paths, summaries, descriptions, and tags) | |
| limit | No | Maximum number of results to return (default: 50) | |
| skip | No | Number of results to skip for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of results to return (default: 50)",
"type": "number"
},
"query": {
"description": "Search query to find endpoints (searches in paths, summaries, descriptions, and tags)",
"type": "string"
},
"skip": {
"default": 0,
"description": "Number of results to skip for pagination (default: 0)",
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}