Read Order Detail
Perform Read Order Detail through ClaimSoft.
claimsoft_read_order_detailreadclaimsoft
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Include Items
include_itemsbooleanOptional true-or-false value.
Default:
true - Include Payers
include_payersbooleanOptional true-or-false value.
Default:
true
Outputs
order_idOrder Idorder_numberOrder Numberpatient_idPatient Idpatient_namePatient NamestatusStatusdos_fromDos Fromdos_toDos TolocationLocationdiagnosis_codesDiagnosis CodesitemsItemspayersPayersurlUrlerrorError
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
}