Skip to documentation
MyForms integration

Complete Order Tasks

Perform Complete Order Tasks through MyForms.

View as Markdown
myforms_complete_order_tasks
write

Inputs

  • workflow_id
    textrequired
    Workflow Id

    Required text value.

  • task_names
    json
    Task Names

    Optional JSON value.

  • status
    text
    Status

    Optional text value.

    Default: "Completed"

  • timeout_seconds
    number
    Timeout Seconds

    Optional numeric value.

    Default: 180

Outputs

  • successSuccess
  • completed_tasksCompleted Tasks
  • completed_countCompleted Count
  • 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"
  ],
  "properties": {
    "status": {
      "type": "string",
      "default": "Completed",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "task_names": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "workflow_id": {
      "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": {},
    "error_message": {},
    "completed_count": {},
    "completed_tasks": {}
  },
  "additionalProperties": true
}
View all MyForms actions