POST
/
public
/
v1
/
patient-diagnoses
curl --request POST \
  --url https://api.silnahealth.com/public/v1/patient-diagnoses/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "patient_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "diagnosis_code": "F84.0"
}'
{
  "patient_diagnosis_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
Patient Diagnosis Create Schema

Patient Diagnosis Create Schema

patient_id
string
required
diagnosis_code
string
required

An ICD_10 Diagnosis Code

Example:

"F84.0"

Response

201
application/json
Patient Diagnosis Create Response Schema

Patient Diagnosis Create Response Schema

patient_diagnosis_id
string
required