ara_query
Query Ara API endpoints to monitor Ansible playbook executions, track task progress, and access execution data with automatic pagination defaults.
Instructions
Query Ara API endpoints with automatic pagination defaults (limit=3, order=-started)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Request body for POST requests | |
endpoint | Yes | API endpoint path (e.g., /api/v1/playbooks, /api/v1/plays/1). Supports query parameters like ?limit=10&offset=20&order=-started. If no limit is specified, defaults to 3 results. | |
method | No | GET |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Request body for POST requests",
"type": "object"
},
"endpoint": {
"description": "API endpoint path (e.g., /api/v1/playbooks, /api/v1/plays/1). Supports query parameters like ?limit=10&offset=20&order=-started. If no limit is specified, defaults to 3 results.",
"type": "string"
},
"method": {
"default": "GET",
"enum": [
"GET",
"POST"
],
"type": "string"
}
},
"required": [
"endpoint"
],
"type": "object"
}