Skip to documentation
MyForms integration

Select Workflow Physician Batches

Perform Select Workflow Physician Batches through MyForms.

View as Markdown
myforms_select_workflow_physician_batches
write

Inputs

  • physician_batches
    jsonrequired
    Physician Batches

    Required JSON value.

  • timeout_seconds
    number
    Timeout Seconds

    Optional numeric value.

    Default: 180

Outputs

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