Executions
Use this endpoint to list and filter executions of all reliability policies in Acceldata.
This API is commonly used to monitor job history, check execution statuses, and build operational dashboards.
Endpoint(s)
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
page | string | No | Page number to retrieve |
size | string | No | Number of results per page |
executionStatus | string | No | Filter by execution status (STARTED , RUNNING , SUCCESSFUL , WARNING , ERRORED , ABORTED ). | |
resultStatus | string | No | Filter by result status. |
ruleId | string | No | Filter by policy/rule ID |
startedAfter | string | No | (For grouped executions) ISO date to filter executions starting after this time. |
finishedBefore | string | No | (For grouped executions) ISO date to filter executions finishing before this time. |
Sample Requests
curl -X GET "https://{HOST}/catalog-server/api/rules/executions?page=0&size=25&executionStatus=SUCCESSFUL"
Grouped Execution Sample Request
curl -X GET "https://{HOST}/catalog-server/api/rules/grouped-executions?startedAfter=2024-06-01T00:00:00Z&finishedBefore=2024-06-30T23:59:59Z"
Was this page helpful?