POST
/
prior_auths
/
{prior_auth_id}
/
supporting_information
cURL
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>"
    }
  }
}'
{
  "status": "<string>"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

prior_auth_id
string<uuid>
required

Unique identifier of the prior authorization

Body

application/json

Supporting information including claim history and test claims

The body is of type object.

Response

201
application/json

Supporting information submitted successfully

The response is of type object.