List Patient Documents
Perform List Patient Documents through ExaPACS.
exapacs_list_patient_documentsreadexapacs
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Category
categorytextOptional text value.
- Before Date
before_dateexpressionOptional literal value or workflow expression.
- Show All
show_allbooleanOptional true-or-false value.
Default:
false - Lookback Days
lookback_daysnumberOptional numeric value.
Outputs
statusStatusdocumentsDocumentssearch_afterSearch Aftersearch_beforeSearch BeforeerrorError
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",
"patient_id"
],
"properties": {
"category": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"show_all": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"before_date": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"lookback_days": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"status": {},
"documents": {},
"search_after": {},
"search_before": {}
},
"additionalProperties": true
}