Summary
Get Iterations of a Job's Task
Description
Get iterations of a Job's Task by Job ID and Task name.
Route
GET /workflow_engine/getTaskIterations/:job_id/:task
Roles
admin
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
job_id |
string |
yes |
Job ID to get iterations of its Task. |
task |
string |
yes |
Four digit hexadecimal task id to get task iterations from |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
task_iterations |
array |
Iterations of a Job's Task. |
Copied to Clipboard
[
{
"_id": "4321abcdef694aa79dae47ad",
"job": {
"_id": "5cb7b531d06cceb89fd21b1c",
"task": "cd34",
"ancestors": [
"5cb7b531d06cceb89fd21b1c",
"5cb7b531d06cceb89fd21b1c"
],
"name": false,
"description": true
},
"variables": {
"incoming": {
"inputVariable": "inputValue"
},
"outgoing": {
"outputVariable": null
},
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "ad dolore"
}
]
},
"metrics": {
"retrying": false
},
"name": true,
"summary": -51681934,
"displayName": "voluptate exercitation",
"type": 61498795.4901931,
"x": "occaecat minim nulla Ut",
"y": "tempor magna ex Duis irure"
},
{
"_id": "5cb7b531d06cceb89fd21b1c",
"job": {
"_id": "4321abcdef694aa79dae47ad",
"task": "12ab",
"ancestors": [
"5cb7b531d06cceb89fd21b1c"
],
"name": 50273985.4614183,
"description": false
},
"variables": {
"incoming": {
"inputVariable": "inputValue"
},
"outgoing": {
"outputVariable": null
},
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "officia nulla"
},
{
"type": "encryption",
"pointer": "esse officia aliquip"
},
{
"type": "encryption",
"pointer": "Excepteur anim officia velit"
},
{
"type": "encryption",
"pointer": "commodo in aliqua qui officia"
}
]
},
"metrics": {
"retrying": false
},
"name": "ea veniam Lorem",
"summary": "reprehenderit",
"displayName": -39644666,
"type": false,
"x": "aute nulla elit Lorem",
"y": 28988344.80445735
}
]
Copied to Clipboard
{
"title": "task_iterations",
"type": "array",
"items": {
"$ref": "taskDocument"
}
}