curl --request POST \
--url https://app.casehealth.ai/api/v1/prior_auths/{prior_auth_id}/supporting_information \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"claim_history": {
"data": [
{
"claim_id": "<string>",
"date": "2023-12-25",
"type": "pharmacy",
"status": "paid",
"drug_name": "<string>",
"ndc": "<string>",
"procedure_code": "<string>"
}
]
},
"test_claim": {
"data": {
"claim_id": "<string>",
"date": "2023-12-25",
"status": "pending",
"expected_coverage": true,
"adjudication_notes": "<string>"
}
}
}'