Resolve Insurance (Capitation Match)
Perform Resolve Insurance (Capitation Match) through Regal/Lakeside.
regal_resolve_insurancereadregal_lakeside
Inputs
- Company
companytextrequiredRequired text value.
- Line Of Business
line_of_businesstextOptional text value.
- Referral Network
referral_networktextOptional text value.
- Patient Id
patient_idtextrequiredRequired text value.
- Date Of Service
date_of_servicedaterequiredRequired date in YYYY-MM-DD format.
- Member Id
member_idtextOptional text value.
- Visit Type
visit_typetextOptional text value.
- Visit Types
visit_typesjsonOptional JSON value.
- Portal
portaltextOptional text value.
Outputs
successSuccesserrorError
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": [
"company",
"patient_id",
"date_of_service"
],
"properties": {
"portal": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"company": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"member_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"visit_type": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"visit_types": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"date_of_service": {
"type": "string",
"format": "date",
"description": "Required date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"line_of_business": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"referral_network": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {}
},
"additionalProperties": true
}