Complete Order Task Batches
Perform Complete Order Task Batches through MyForms.
myforms_complete_order_task_batcheswrite
Inputs
- Task Batches
task_batchesjsonrequiredRequired JSON value.
- Status
statustextOptional text value.
Default:
"Completed" - Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccessresultsResultscompleted_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": [
"task_batches"
],
"properties": {
"status": {
"type": "string",
"default": "Completed",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"task_batches": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"timeout_seconds": {
"type": "number",
"default": 180,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"results": {},
"success": {},
"error_message": {},
"completed_count": {}
},
"additionalProperties": true
}