- Getting Started
- Initial Biomarkers and Biomarker Groups Setup
- Optional: Using LOINC IDs from LOINC.org
- Flow Between Lab and API
- Limitations
- Support
- User
- Patient
- Visit
- Lab Test
- Biomarker Group
- Biomarker
- Webhooks
Create a patient
POST
/patients
Patient
Last modified:2025-03-05 13:02:06
Maintainer:Not configured
Request
Body Params application/json
user_id
string
required
patient_id
string
required
Example:
Patient ID
date_of_birth
string
required
Example:
2000-01-25
sex
string
required
Example:
male
pregnant
boolean
required
Example:
false
note
string
required
Example:
Medical conditions etc.
Example
{
"user_id": "539577db-2862-43dc-89e9-725f0b2dcdb6",
"patient_id": "12056",
"date_of_birth": "2000-01-25",
"sex": "male",
"pregnant": false,
"note": "Medical conditions etc."
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/patients' \
--header 'Content-Type: application/json' \
--data-raw '{
"user_id": "539577db-2862-43dc-89e9-725f0b2dcdb6",
"patient_id": "12056",
"date_of_birth": "2000-01-25",
"sex": "male",
"pregnant": false,
"note": "Medical conditions etc."
}'
Responses
🟢201Created
This response does not have a body.
Modified at 2025-03-05 13:02:06