from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.clearinghouse.check_eligibility(
provider_identifier="providerIdentifier",
provider_name="providerName",
service_type_codes=["string"],
subscriber_date_of_birth="subscriberDateOfBirth",
subscriber_first_name="subscriberFirstName",
subscriber_last_name="subscriberLastName",
subscriber_member_id="subscriberMemberId",
trading_partner_service_id="tradingPartnerServiceId",
)
print(response.eligibility)
{
"eligibility": "<any>"
}
Verifies patient eligibility with a specific payer for given services based on the provided patient and provider information.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.clearinghouse.check_eligibility(
provider_identifier="providerIdentifier",
provider_name="providerName",
service_type_codes=["string"],
subscriber_date_of_birth="subscriberDateOfBirth",
subscriber_first_name="subscriberFirstName",
subscriber_last_name="subscriberLastName",
subscriber_member_id="subscriberMemberId",
trading_partner_service_id="tradingPartnerServiceId",
)
print(response.eligibility)
{
"eligibility": "<any>"
}
Successfully checked eligibility, returns the eligibility details from the payer.