Conditional Patient Responsibility

Bridge’s React SDK is in beta! Expect breaking changes, bugs, and missing features. Please talk to us before integrating.

Conditional Patient Responsibility, explained in more detail here, is supported by the SDK.

Pass a clinicalInfo field in the hard eligibility submit() call. The value should mirror the field in the ServiceEligibility API.

1const { submit } = useHardEligibilitySubmit()
2
3submit({
4 clinicalInfo: {
5 diagnoses: ["...", "..."],
6 },
7})