Rule Execution Server resources that represent Decision Warehouse trace instances and related objects.
Resources for developing client applications that work with decision warehouse traces.
8.8.1
| REST Method | Description |
|---|---|
| GET /api/v1/decisiontraces[?rulesetpath={string}][&start={string}][&end={string}][&offset={string}][&limit={string}][&parts={string}] | Returns all the Decision Warehouse traces that match the optional selection filters from the repository. |
| GET /api/v1/decisiontraces?count={boolean} | Counts the number of elements in this list. |
| POST /api/v1/decisiontraces | Removes all the Decision Warehouse traces when their execution identifier is included in the request body. |
| DELETE /api/v1/decisiontraces[?rulesetpath={string}][&start={string}][&end={string}] | Removes all the Decision Warehouse traces that match the optional selection filters. |
| GET /api/v1/decisiontraces/{execution_id}[?parts={string}] | Returns the Decision Warehouse trace with the specified execution identifier. If the repository does not contain a trace with this identifier, the response body is empty and the HTTP status 204 is returned. |
| DELETE /api/v1/decisiontraces/{execution_id} | Removes the trace with the specified execution identifier from the repository. If the repository does not contain such a trace, the response body contains an error description and the HTTP status 202 is returned. |
The following subtopics describe the REST resources defined for this resource set:
Parent Topic: Decision Server REST Interface