Submit Workflow Pages
Perform Submit Workflow Pages through MyForms.
myforms_submit_workflow_pageswrite
Inputs
- Workflow Id
workflow_idtextrequiredRequired text value.
- Client Id
client_idtextrequiredRequired text value.
- Attachment Id
attachment_idnumberrequiredRequired numeric value.
- Document Name
document_nametextrequiredRequired text value.
- Page Numbers
page_numbersjsonrequiredRequired JSON value.
- Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccessdocument_idDocument Idpage_numbersPage Numberserror_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",
"client_id",
"attachment_id",
"document_name",
"page_numbers"
],
"properties": {
"client_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"workflow_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"page_numbers": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"attachment_id": {
"type": "number",
"description": "Required numeric value.",
"x-workflow-field-type": "number"
},
"document_name": {
"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": {},
"document_id": {},
"page_numbers": {},
"error_message": {}
},
"additionalProperties": true
}