Skip to documentation
ClaimSoft integration

Query Orders Missing Alerts

Perform Query Orders Missing Alerts through ClaimSoft.

View as Markdown
claimsoft_query_orders_missing_alerts
writeclaimsoft

Inputs

  • begin_date
    daterequired
    Begin Date

    Required date in YYYY-MM-DD format.

  • end_date
    daterequired
    End Date

    Required date in YYYY-MM-DD format.

  • billing_location_ids
    json
    Billing Location Ids

    Optional JSON value.

  • order_statuses
    json
    Order Statuses

    Optional JSON value.

    Options: 1 ("1"), 2 ("2"), 3 ("3"), 4 ("4"), 5 ("5"), 7 ("7"), 8 ("8")

  • search_text
    text
    Search Text

    Optional text value.

  • search_fields
    text
    Search Fields

    Optional text value.

    Default: "PatientName,PatientAccountId,Order,Charge"

  • no_alerts
    boolean
    No Alerts

    Optional true-or-false value.

    Default: true

  • show_deleted
    boolean
    Show Deleted

    Optional true-or-false value.

    Default: false

  • max_rows
    number
    Max Rows

    Optional numeric value.

    Default: 500

Outputs

  • successSuccess
  • totalTotal
  • rowsRows
  • order_idsOrder Ids
  • filter_modelFilter Model
  • query_paramsQuery Params
  • truncatedTruncated
  • errorError

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": [
    "begin_date",
    "end_date"
  ],
  "properties": {
    "end_date": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "max_rows": {
      "type": "number",
      "default": 500,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "no_alerts": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "begin_date": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "search_text": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "show_deleted": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "search_fields": {
      "type": "string",
      "default": "PatientName,PatientAccountId,Order,Charge",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "order_statuses": {
      "enum": [
        "1",
        "2",
        "3",
        "4",
        "5",
        "7",
        "8"
      ],
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "billing_location_ids": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "rows": {},
    "error": {},
    "total": {},
    "success": {},
    "order_ids": {},
    "truncated": {},
    "filter_model": {},
    "query_params": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions