# Read Order Detail

> Perform Read Order Detail through ClaimSoft.

Source: [https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_read_order_detail](https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_read_order_detail)

Integration: [ClaimSoft](https://genhealth.ai/docs/workflows/integrations/claim-soft.md)

- Handler: `claimsoft_read_order_detail`

- Connection type: `claimsoft`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `include_items` — Include Items (boolean)
  Optional true-or-false value.
  Default: `true`
- `include_payers` — Include Payers (boolean)
  Optional true-or-false value.
  Default: `true`

## Outputs

- `order_id` — Order Id
- `order_number` — Order Number
- `patient_id` — Patient Id
- `patient_name` — Patient Name
- `status` — Status
- `dos_from` — Dos From
- `dos_to` — Dos To
- `location` — Location
- `diagnosis_codes` — Diagnosis Codes
- `items` — Items
- `payers` — Payers
- `url` — Url
- `error` — Error

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

```json
{
  "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

```json
{
  "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
}
```
