POST
/
public
/
v1
/
prior-authorizations
curl --request POST \
  --url https://api.silnahealth.com/public/v1/prior-authorizations/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "patient_plan_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "specialty": "PHYSICAL_THERAPY",
  "authorization_type": "ASSESSMENT_AUTHORIZATION"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "DATA_REQUESTED",
  "required_data": {
    "treatment_codes": {
      "required": true,
      "standards": [
        "CPT"
      ]
    },
    "documents": {
      "required": true,
      "items": [
        {
          "document_type": "AUTHORIZATION_FORM",
          "required": true
        }
      ]
    },
    "clinician_npi": {
      "required": true
    },
    "start_date": {
      "required": true
    }
  }
}
This API is in Beta! Please be prepared to adapt to a new schema with limited notice if you choose to integrate.
This endpoint supports idempotency keys

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

idempotency-key
string

Unique key to prevent duplicate requests. We support keys up to 255 characters.

Required string length: 1 - 255

Body

application/json
Prior Authorization Create Request Schema

Prior Authorization Create Request Schema

Response

201
application/json
Prior Authorization Create Response Schema

Prior Authorization Create Response Schema