monitoring

Get status of Executions and async tasks

Securityapi_key
Request
query Parameters
page_number
integer <int64>
Default: 1

The page number for which to get tasks for monitor. This will default to the first page if excluded

page_size
integer <int64>

The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided

state
string
Default: "RUNNING"

The state of task to get the status. Default is to return running tasks

Value: "RUNNING"
Responses
200

Success

400

Bad request

401

Unauthorized access

404

Not found

get/monitor-task
Response samples
application/json
{
  • "_pageInfo": {
    },
  • "responseList": [
    ]
}

Get status of Executions or async tasks by id

Securityapi_key
Request
path Parameters
taskId
required
integer <int32>

The ID of the monitorable task to get

query Parameters
monitorable_task
string
Default: "EXECUTIONS"

The type of monitorable task to check progress

Value: "EXECUTIONS"
Responses
200

Success

400

Bad request

403

Forbidden access

404

Not found

get/monitor-task/{taskId}
Response samples
application/json
{
  • "taskId": 123,
  • "taskType": "EXECUTIONS",
  • "progression": [
    ]
}