POST
/
api
/
v2
/
clearinghouse
/
check-eligibility
Python
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>"
}

Body

application/json

Response

200
application/json

Successfully checked eligibility, returns the eligibility details from the payer.