Summary
Completes a manual task
Description
Finishes a manual task with finish state success
Route
POST /workflow_engine/finishTask
Roles
admin
engineering
support
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
task_id |
string |
yes |
ID of the Task within that job. |
job_id |
string |
yes |
ID of the Job. |
task_data |
object |
yes |
Data of the completed Task. |
Copied to Clipboard
{
"task_id": "cupidatat nostrud occaecat consequat non",
"job_id": "consequat",
"task_data": null
}
Copied to Clipboard
{
"type": "object",
"properties": {
"task_id": {
"type": "string",
"title": "task_id"
},
"job_id": {
"type": "string",
"title": "job_id"
},
"task_data": {
"description": "Data of the completed Task.",
"type": "object",
"properties": {},
"required": [
"task_data"
],
"additionalProperties": false
}
},
"required": [
"task_id",
"job_id",
"task_data"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
job_details |
object |
The Current Job Object |
Copied to Clipboard
{
"job_details": true
}
Copied to Clipboard
{
"description": "The Current Job Object",
"type": "object",
"properties": {
"job_details": true
},
"required": [
"job_details"
],
"additionalProperties": false
}