Download & Merge Patient Documents
Perform Download & Merge Patient Documents through ClaimSoft.
claimsoft_download_patient_documentswriteclaimsoft
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Documents
documentsjsonrequiredRequired JSON value.
- Merge
mergebooleanOptional true-or-false value.
Default:
true - Hidden
hiddenbooleanOptional true-or-false value.
Default:
false - Title
titletextOptional text value.
- Dedupe Key
dedupe_keyexpressionOptional literal value or workflow expression.
- Date Of Service
date_of_serviceexpressionOptional literal value or workflow expression.
Outputs
successSuccesspatient_idPatient Iddocument_idDocument Iddocument_idsDocument IdstotalTotalhiddenHiddenerrorError
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": [
"patient_id",
"documents"
],
"properties": {
"merge": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"title": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"hidden": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"documents": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"dedupe_key": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"date_of_service": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"total": {},
"hidden": {},
"success": {},
"patient_id": {},
"document_id": {},
"document_ids": {}
},
"additionalProperties": true
}