Query Orders Missing Alerts
Perform Query Orders Missing Alerts through ClaimSoft.
claimsoft_query_orders_missing_alertswriteclaimsoft
Inputs
- Begin Date
begin_datedaterequiredRequired date in YYYY-MM-DD format.
- End Date
end_datedaterequiredRequired date in YYYY-MM-DD format.
- Billing Location Ids
billing_location_idsjsonOptional JSON value.
- Order Statuses
order_statusesjsonOptional JSON value.
Options: 1 ("1"), 2 ("2"), 3 ("3"), 4 ("4"), 5 ("5"), 7 ("7"), 8 ("8")
- Search Text
search_texttextOptional text value.
- Search Fields
search_fieldstextOptional text value.
Default:
"PatientName,PatientAccountId,Order,Charge" - No Alerts
no_alertsbooleanOptional true-or-false value.
Default:
true - Show Deleted
show_deletedbooleanOptional true-or-false value.
Default:
false - Max Rows
max_rowsnumberOptional numeric value.
Default:
500
Outputs
successSuccesstotalTotalrowsRowsorder_idsOrder Idsfilter_modelFilter Modelquery_paramsQuery ParamstruncatedTruncatederrorError
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
}