Find Most Recent Unalerted Order
Perform Find Most Recent Unalerted Order through ClaimSoft.
claimsoft_find_most_recent_unalerted_orderwriteclaimsoft
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Status Filter
status_filterjsonOptional JSON value.
Options: 1 ("1"), 2 ("2"), 3 ("3"), 4 ("4"), 5 ("5"), 7 ("7"), 8 ("8")
Outputs
foundFoundorder_idOrder Idorder_numberOrder NumberurlUrlerrorError
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": [
"patient_id"
],
"properties": {
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"status_filter": {
"enum": [
"1",
"2",
"3",
"4",
"5",
"7",
"8"
],
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"url": {},
"error": {},
"found": {},
"order_id": {},
"order_number": {}
},
"additionalProperties": true
}