POST
/
api
/
v2
/
browser-automation
/
availity
/
submit-appeal
import os
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key=os.environ.get("SAMPLEHC_API_KEY"),  # This is the default and can be omitted
)
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>"
}

Body

application/json

The appeal data including member information, claim details, and supporting documentation.

Response

202
application/json

Accepted. Availity appeal submission process initiated.

POST
/
api
/
v2
/
browser-automation
/
availity
/
submit-appeal
import os
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key=os.environ.get("SAMPLEHC_API_KEY"),  # This is the default and can be omitted
)
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>"
}

Body

application/json

The appeal data including member information, claim details, and supporting documentation.

Response

202
application/json

Accepted. Availity appeal submission process initiated.