Get Patient Documents
Perform Get Patient Documents through ClaimSoft.
claimsoft_get_patient_documentsreadclaimsoft
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
Outputs
patient_idPatient IdtotalTotaldocumentsDocumentserrorError
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": [
"patient_id"
],
"properties": {
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"total": {},
"documents": {},
"patient_id": {}
},
"additionalProperties": true
}