Upload Workflow PDF
Perform Upload Workflow PDF through MyForms.
myforms_upload_workflow_pdfwrite
Inputs
- Workflow Id
workflow_idtextrequiredRequired text value.
- Document Kind
document_kindtextrequiredRequired text value.
- Pdf Base64
pdf_base64textarearequiredRequired text value.
- Filename
filenametextOptional text value.
- Document Template Id
document_template_idnumberOptional numeric value.
- Document Title
document_titletextOptional text value.
- Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccessuploadedUploadeddocument_idDocument Iderror_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",
"document_kind",
"pdf_base64"
],
"properties": {
"filename": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"pdf_base64": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "textarea"
},
"workflow_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"document_kind": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"document_title": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"timeout_seconds": {
"type": "number",
"default": 180,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"document_template_id": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"uploaded": {},
"document_id": {},
"error_message": {}
},
"additionalProperties": true
}