from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.integrations.careviso.submit_prior_authorization(
slug="slug",
attachments=[{
"id": "id",
"file_name": "fileName",
}],
case_type="prior_auth_request",
cpt_codes=["string"],
group_id="groupId",
icd10_codes=["string"],
insurance_name="insuranceName",
lab_order_id="labOrderId",
member_id="memberId",
patient_dob="patientDob",
patient_first_name="patientFirstName",
patient_id="patientId",
patient_last_name="patientLastName",
patient_phone="patientPhone",
provider_fax="providerFax",
provider_first_name="providerFirstName",
provider_id="providerId",
provider_last_name="providerLastName",
provider_npi="providerNpi",
provider_phone="providerPhone",
service_date="serviceDate",
test_names=["string"],
)
print(response)