Summary
Run child job
Description
Run a child job inside a workflow.
Route
No Northbound API Available
Roles
admin
apiwrite
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
job_id |
string |
yes |
- |
task |
string |
yes |
- |
workflow |
string |
yes |
- |
variables |
object |
yes |
- |
Copied to Clipboard
{
"job_id": "est culpa cupidatat aute eiusmod",
"task": "culpa sunt irure nisi",
"workflow": "do veniam labore dolor",
"variables": null
}
Copied to Clipboard
{
"type": "object",
"properties": {
"job_id": {
"type": "string"
},
"task": {
"type": "string"
},
"workflow": {
"type": "string"
},
"variables": {
"type": "object",
"properties": {},
"required": [
"variables"
],
"additionalProperties": false
}
},
"required": [
"job_id",
"task",
"workflow",
"variables"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
job_details |
object |
Details of the initiated job. |
Copied to Clipboard
{
"job_details": true
}
Copied to Clipboard
{
"description": "Details of the initiated job.",
"type": "object",
"properties": {
"job_details": true
},
"required": [
"job_details"
],
"additionalProperties": false
}