Submit Workflow to Document
Perform Submit Workflow to Document through MyForms.
myforms_submit_workflow_to_documentwrite
Inputs
- Workflow Id
workflow_idtextrequiredRequired text value.
- Client Id
client_idtextrequiredRequired text value.
- Attachment Id
attachment_idnumberrequiredRequired numeric value.
- Document Id
document_idtextrequiredRequired text value.
- Page Number
page_numbernumberrequiredRequired numeric value.
- Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccessdocument_idDocument Idpage_numberPage Numbererror_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_id",
"page_number"
],
"properties": {
"client_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"document_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"page_number": {
"type": "number",
"description": "Required numeric value.",
"x-workflow-field-type": "number"
},
"workflow_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"attachment_id": {
"type": "number",
"description": "Required numeric value.",
"x-workflow-field-type": "number"
},
"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_number": {},
"error_message": {}
},
"additionalProperties": true
}