POST
/
prior_auths
/
{prior_auth_id}
/
policy_check
cURL
curl --request POST \
  --url https://app.casehealth.ai/api/v1/prior_auths/{prior_auth_id}/policy_check \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "policy_document_url": "<string>",
  "policy_payload": "<string>"
}'
{
  "policy_check": [
    {
      "step": 123,
      "question_or_action": "<string>",
      "answer": "<string>",
      "passed": true,
      "reason": "<string>",
      "policy_guideline_quoted_source": "<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

Optional parameters for the policy check

The body is of type object.

Response

200
application/json

Policy check results found

The response is of type object.