AVAILITY
Submit Medical Attachments
Submit medical attachments in Availity
POSThttps://api.ontross.com/api/integrations/availity/submit-medical-attachments
Request Fields
input
object
requiredInput object.
input.organization
string
Organization
input.payer
string
Payer
input.provider_npi
string
Provider npi
input.org_name
string
Org name
input.state
string
State
input.first_name
string
First name
input.last_name
string
Last name
input.subscriber_id
string
Subscriber id
input.date_of_birth
string
Date of birth
input.patient_control_number
string
Patient control number
input.claim_number
string
Claim number
input.service_from
string
Service from
input.service_to
string
Service to
input.files
array
List of files.
auth_id
string
requiredAuth id
Output Fields
submission_result_data
object
Submission result data object.
Code
curl --request POST \
--url https://api.ontross.com/api/integrations/availity/submit-medical-attachments \
--header 'X-API-Key: REPLACE_KEY_VALUE' \
--header 'content-type: application/json' \
--data '{"input":{"organization":"value","payer":"value","provider_npi":"value","org_name":"value","state":"value","first_name":"value","last_name":"value","subscriber_id":"value","date_of_birth":"value","patient_control_number":"value","claim_number":"value","service_from":"value","service_to":"value","files":"value"},"auth_id":"auth_uuid_here"}'Request BODY
{
"input": {
"organization": "value",
"payer": "value",
"provider_npi": "value",
"org_name": "value",
"state": "value",
"first_name": "value",
"last_name": "value",
"subscriber_id": "value",
"date_of_birth": "value",
"patient_control_number": "value",
"claim_number": "value",
"service_from": "value",
"service_to": "value",
"files": "value"
},
"auth_id": "auth_uuid_here"
}