For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SandboxDashboard
DocumentationAPI ReferenceChangelog
  • Getting Started
    • Overview
    • API Client
      • Installation
      • Setup
      • Payer Autocomplete
      • Eligibility Input
      • Soft Check
      • Hard Check
      • Existing Patients
      • Analytics
        • Conditional Patient Responsibility
        • Multiple Provider Types
        • ServiceEligibility Objects
  • Concepts
    • Eligibility
    • Providers
    • Patients
    • Notes
    • Services
    • Revalidation
    • Consent
  • Eligibility
    • Soft Eligibility
    • Hard Eligibility
    • Policy Errors
    • Conditional Patient Responsibility
  • Guides
    • Enrollment Status
    • Monitoring Payer Health
    • Webhook Behavior
  • Integrations
LogoLogo
SandboxDashboard
Getting StartedReact SDKAdvanced

ServiceEligibility Objects

Was this page helpful?
Previous

Eligibility

Next
Built with

When running hard checks, each ServiceType results in a ServiceEligibility resource. If there are multiple ServiceTypes, even though Bridge is managing the mergeStrategy and estimateSelection, there are some scenarios where the raw ServiceEligibility ID’s are required.

Once ELIGIBLE, the hard eligibility session will include a serviceEligibility field. The value contains a map of ServiceType ID’s to the ServiceEligibility resource.

1{
2 ...,
3 serviceEligibility: {
4 svt_xxx: {
5 id: "svel_001",
6 ...
7 },
8 svt_yyy: {
9 id: "svel_002",
10 ...
11 }
12 }
13}