Skip to documentation
MyForms integration

Submit Workflow to Document

Perform Submit Workflow to Document through MyForms.

View as Markdown
myforms_submit_workflow_to_document
write

Inputs

  • workflow_id
    textrequired
    Workflow Id

    Required text value.

  • client_id
    textrequired
    Client Id

    Required text value.

  • attachment_id
    numberrequired
    Attachment Id

    Required numeric value.

  • document_id
    textrequired
    Document Id

    Required text value.

  • page_number
    numberrequired
    Page Number

    Required numeric value.

  • timeout_seconds
    number
    Timeout Seconds

    Optional numeric value.

    Default: 180

Outputs

  • successSuccess
  • document_idDocument Id
  • page_numberPage Number
  • 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",
    "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
}
View all MyForms actions