Conditional Patient Responsibility

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

Pass clinicalInfo in the hard eligibility submission. The value should mirror the field in the ServiceEligibility API.

React

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

TypeScript

1await bridge.hardEligibility({
2 serviceTypeIds: ["svt_xxx"],
3 state: "CA",
4 patient: { payerId, firstName, lastName, dateOfBirth },
5 clinicalInfo: {
6 diagnoses: ["...", "..."],
7 },
8});