Skip to main content
Version: 1.14

REGARDS Processing Monitoring API

GET /monitoring/executions

List the executions present in the processing database, filtered by diverse criteria.

Parameters

NameLocated inDescriptionRequiredSchema
tenantqueryThe tenantYesstring
statusqueryThe list of execution statusYes[ RUNNING, SUCCESS, FAILURE, TIMED_OUT ]
userEmailqueryThe optional user who launched the executionsNostring
processBusinessIdqueryThe optional process business ID the executions refer toNostring
fromqueryThe execution 'last updated' minimum timestampNostring
toqueryThe execution 'last updated' maximum timestampNostring
pagequeryThe page numberNointeger
sizequeryThe page sizeNointeger

Responses

CodeDescription
200default response
500default response

Sample 200 response body:

{
"links": [
{
"rel": "string",
"href": "string",
"hreflang": "string",
"media": "string",
"title": "string",
"type": "string",
"deprecation": "string",
"profile": "string",
"name": "string"
}
],
"content": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"executionCorrelationId": "string",
"batchId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"batchCorrelationId": "string",
"expectedDuration": 0,
"inputFiles": [{}],
"steps": [{}],
"tenant": "string",
"userName": "string",
"processBusinessId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"created": "2020-12-31T00:00:00Z",
"lastUpdated": "2020-12-31T00:00:00Z",
"version": 0,
"persisted": true,
"processName": "string",
"links": [
{
"rel": "string",
"href": "string",
"hreflang": "string",
"media": "string",
"title": "string",
"type": "string",
"deprecation": "string",
"profile": "string",
"name": "string"
}
]
}
],
"page": {
"size": 0,
"totalElements": 0,
"totalPages": 0,
"number": 0
}
}