Submit Workflow Page Batches
Perform Submit Workflow Page Batches through MyForms.
myforms_submit_workflow_page_batcheswrite
Inputs
- Page Batches
page_batchesjsonrequiredRequired JSON value.
- Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccessresultsResultssubmitted_countSubmitted Countfailed_countFailed 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": [
"page_batches"
],
"properties": {
"page_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": {},
"failed_count": {},
"error_message": {},
"submitted_count": {}
},
"additionalProperties": true
}