Skip to documentation
MyForms integration

Upload Workflow PDF

Perform Upload Workflow PDF through MyForms.

View as Markdown
myforms_upload_workflow_pdf
write

Inputs

  • workflow_id
    textrequired
    Workflow Id

    Required text value.

  • document_kind
    textrequired
    Document Kind

    Required text value.

  • pdf_base64
    textarearequired
    Pdf Base64

    Required text value.

  • filename
    text
    Filename

    Optional text value.

  • document_template_id
    number
    Document Template Id

    Optional numeric value.

  • document_title
    text
    Document Title

    Optional text value.

  • timeout_seconds
    number
    Timeout Seconds

    Optional numeric value.

    Default: 180

Outputs

  • successSuccess
  • uploadedUploaded
  • document_idDocument Id
  • error_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
}
View all MyForms actions