Skip to documentation
ClaimSoft integration

Read Order Detail

Perform Read Order Detail through ClaimSoft.

View as Markdown
claimsoft_read_order_detail
readclaimsoft

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • include_items
    boolean
    Include Items

    Optional true-or-false value.

    Default: true

  • include_payers
    boolean
    Include Payers

    Optional true-or-false value.

    Default: true

Outputs

  • order_idOrder Id
  • order_numberOrder Number
  • patient_idPatient Id
  • patient_namePatient Name
  • statusStatus
  • dos_fromDos From
  • dos_toDos To
  • locationLocation
  • diagnosis_codesDiagnosis Codes
  • itemsItems
  • payersPayers
  • urlUrl
  • errorError

Output schema completeness: best_effort_declared

Safety

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

Schemas

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

Input schema
{
  "type": "object",
  "required": [
    "order_id"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "include_items": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "include_payers": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "url": {},
    "error": {},
    "items": {},
    "dos_to": {},
    "payers": {},
    "status": {},
    "dos_from": {},
    "location": {},
    "order_id": {},
    "patient_id": {},
    "order_number": {},
    "patient_name": {},
    "diagnosis_codes": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions