Check Eligibility
Perform Check Eligibility through ClaimSoft.
claimsoft_check_eligibilitywriteclaimsoft
Inputs
- Insured Id
insured_idexpressionrequiredRequired literal value or workflow expression.
- Date Of Service
date_of_serviceexpressionrequiredRequired literal value or workflow expression.
- Patient Id
patient_idexpressionOptional literal value or workflow expression.
Outputs
successSuccesserrorError
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": [
"insured_id",
"date_of_service"
],
"properties": {
"insured_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"date_of_service": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {}
},
"additionalProperties": true
}