Complete Order Tasks
Perform Complete Order Tasks through MyForms.
myforms_complete_order_taskswrite
Inputs
- Workflow Id
workflow_idtextrequiredRequired text value.
- Task Names
task_namesjsonOptional JSON value.
- Status
statustextOptional text value.
Default:
"Completed" - Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccesscompleted_tasksCompleted Taskscompleted_countCompleted Counterror_messageError Message
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"workflow_id"
],
"properties": {
"status": {
"type": "string",
"default": "Completed",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"task_names": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"workflow_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"timeout_seconds": {
"type": "number",
"default": 180,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"error_message": {},
"completed_count": {},
"completed_tasks": {}
},
"additionalProperties": true
}