Skip to documentation
MyForms integration

Complete Order Task Batches

Perform Complete Order Task Batches through MyForms.

View as Markdown
myforms_complete_order_task_batches
write

Inputs

  • task_batches
    jsonrequired
    Task Batches

    Required JSON value.

  • status
    text
    Status

    Optional text value.

    Default: "Completed"

  • timeout_seconds
    number
    Timeout Seconds

    Optional numeric value.

    Default: 180

Outputs

  • successSuccess
  • resultsResults
  • 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": [
    "task_batches"
  ],
  "properties": {
    "status": {
      "type": "string",
      "default": "Completed",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "task_batches": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "timeout_seconds": {
      "type": "number",
      "default": 180,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "results": {},
    "success": {},
    "error_message": {},
    "completed_count": {}
  },
  "additionalProperties": true
}
View all MyForms actions