Skip to main content
PATCH
/
public
/
v1
/
prior-authorizations
/
{prior_authorization_id}
Update Prior Authorization
curl --request PATCH \
  --url https://app.silnahealth.com/api/public/v1/prior-authorizations/{prior_authorization_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "requested_treatment_codes": null,
  "documents": null,
  "document_intelligence_configurations": null,
  "clinician": null,
  "start_date": null,
  "save_as_draft": false,
  "skip_document_intelligence": false
}
'
{
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.silnahealth.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

prior_authorization_id
string
required

Body

application/json
requested_treatment_codes
V1RequestedTreatmentCodePatch · object[] | null

List of treatment codes to update

documents
V1DocumentPatch · object[] | null

List of documents to update

document_intelligence_configurations
V1DocumentIntelligenceConfiguration · object[] | null

Document intelligence configurations for validation overrides. By default, document validation is enabled if the document type supports it and document validation is enabled on your account

clinician
V1ClinicianPatch · object

Clinician information

start_date
string<date> | null

Requested start date

save_as_draft
boolean
default:false

Whether to save as draft. Only available if prior auth management is enabled. Reach out to your Silna contact to turn it on.

skip_document_intelligence
boolean
default:false

Skip document intelligence across all documents.

Response

OK