Skip to documentation
MyForms integration

Refresh Order Data

Perform Refresh Order Data through MyForms.

View as Markdown
myforms_refresh_order_data
write

Inputs

  • order_id
    text
    Order Id

    Optional text value.

  • workflow_number
    text
    Workflow Number

    Optional text value.

  • patient_id
    text
    Patient Id

    Optional text value.

  • patient_state
    text
    Patient State

    Optional text value.

  • account_key
    text
    Account Key

    Optional text value.

  • ordering_doctor
    text
    Ordering Doctor

    Optional text value.

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

No named outputs are declared for this action.

Output schema completeness: unknown

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
Yes

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "order_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_state": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "ordering_doctor": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "workflow_number": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
View all MyForms actions