Download Patient Document
Perform Download Patient Document through ExaPACS.
exapacs_download_patient_documentwriteexapacs
Inputs
- Exa Doc Id
exa_doc_idexpressionrequiredRequired literal value or workflow expression.
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Output Path
output_pathtextOptional text value.
Outputs
statusStatusdocument_idDocument Ids3_keyS3 KeyfilenameFilenamemime_typeMime Typebyte_countByte Countoutput_pathOutput PathskippedSkippederrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"exa_doc_id",
"patient_id",
"order_id"
],
"properties": {
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"exa_doc_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"output_path": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"s3_key": {},
"status": {},
"skipped": {},
"filename": {},
"mime_type": {},
"byte_count": {},
"document_id": {},
"output_path": {}
},
"additionalProperties": true
}