Upload Eligibility Report
Perform Upload Eligibility Report through ClaimSoft.
claimsoft_upload_eligibility_reportwriteclaimsoft
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Eligibility Id
eligibility_idexpressionrequiredRequired literal value or workflow expression.
- Filename
filenametextrequiredRequired text value.
- Alternate Filenames
alternate_filenamesjsonOptional JSON value.
- Tab
tabtextOptional text value.
Default:
"Documents"
Outputs
successSuccesspatient_idPatient Ideligibility_idEligibility IdfilenameFilenameskippedSkippedmatched_filenameMatched FilenamemessageMessageerrorError
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",
"eligibility_id",
"filename"
],
"properties": {
"tab": {
"type": "string",
"default": "Documents",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"filename": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"eligibility_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"alternate_filenames": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"message": {},
"skipped": {},
"success": {},
"filename": {},
"patient_id": {},
"eligibility_id": {},
"matched_filename": {}
},
"additionalProperties": true
}