List Patient Insurance Policies
Perform List Patient Insurance Policies through ExaPACS.
exapacs_list_patient_insurance_policiesreadexapacs
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Patient Id
patient_idexpressionOptional literal value or workflow expression.
Outputs
statusStatuspoliciesPolicieserrorError
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"
},
"patient_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"status": {},
"policies": {}
},
"additionalProperties": true
}