POST
/
api
/
v1
/
patients
/
{patient_id}
/
risk_factors
/
raw_text
curl --request POST \
  --url https://api.byblend.com/api/v1/patients/{patient_id}/risk_factors/raw_text \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "allergies": "Penicillin, latex",
  "conditions": "Asthma, hypertension",
  "medications": "vyvanse/metformin"
}'

Authorizations

Authorization
string
header
required

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

Path Parameters

patient_id
string
required

Unique (UUID) identifier for the patient

Body

application/json

Response

201

Raw text risk factors added successfully