from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.browser_automation.availity.submit_appeal(
availity_payer="Anthem - CA",
billed_amount="billedAmount",
claim_number="claimNumber",
contact_phone_number="contactPhoneNumber",
document={
"id": "id",
"file_name": "fileName",
},
member_date_of_birth="memberDateOfBirth",
member_first_name="memberFirstName",
member_id="memberId",
member_last_name="memberLastName",
request_reason="Authorization Issue",
service_start_date="serviceStartDate",
state="state",
supporting_rationale="supportingRationale",
)
print(response.async_result_id)
{
"asyncResultId": "<string>"
}
Initiates an asynchronous process to submit an appeal to Availity. Returns an ID for tracking.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.browser_automation.availity.submit_appeal(
availity_payer="Anthem - CA",
billed_amount="billedAmount",
claim_number="claimNumber",
contact_phone_number="contactPhoneNumber",
document={
"id": "id",
"file_name": "fileName",
},
member_date_of_birth="memberDateOfBirth",
member_first_name="memberFirstName",
member_id="memberId",
member_last_name="memberLastName",
request_reason="Authorization Issue",
service_start_date="serviceStartDate",
state="state",
supporting_rationale="supportingRationale",
)
print(response.async_result_id)
{
"asyncResultId": "<string>"
}
The appeal data including member information, claim details, and supporting documentation.
Accepted. Availity appeal submission process initiated.