Skip to documentation
ClaimSoft integration

Find Most Recent Unalerted Order

Perform Find Most Recent Unalerted Order through ClaimSoft.

View as Markdown
claimsoft_find_most_recent_unalerted_order
writeclaimsoft

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • status_filter
    json
    Status Filter

    Optional JSON value.

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

Outputs

  • foundFound
  • order_idOrder Id
  • order_numberOrder Number
  • urlUrl
  • 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": [
    "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
}
View all ClaimSoft actions