Skip to documentation
RiverSpring / ElderServe integration

Check Eligibility

Perform Check Eligibility through RiverSpring / ElderServe.

View as Markdown
riverspring_check_eligibility
writeriverspring

Inputs

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

  • document_id
    expression
    Document Id

    Optional literal value or workflow expression.

  • insurance_policy_id
    expression
    Insurance Policy Id

    Optional literal value or workflow expression.

  • timeout_seconds
    number
    Timeout Seconds

    Optional numeric value.

    Default: 300

Outputs

  • successSuccess
  • benefit_verifiedBenefit Verified
  • statusStatus
  • detailsDetails
  • elig_s3_pathElig S3 Path
  • insurance_policy_idInsurance Policy Id
  • eligibilityEligibility
  • errorError

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",
  "properties": {
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "timeout_seconds": {
      "type": "number",
      "default": 300,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "insurance_policy_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "details": {},
    "success": {},
    "eligibility": {},
    "elig_s3_path": {},
    "benefit_verified": {},
    "insurance_policy_id": {}
  },
  "additionalProperties": true
}
View all RiverSpring / ElderServe actions