Initial Biomarkers and Biomarker Groups Setup
1. Biomarker Groups Setup
POST /biomarker-groups
{
"biomarker_group_id": "1542-89",
"titleEn": "Complete Blood Count",
"abbr": "CBC"
}
2. Individual Biomarker Setup
mainLoincId
.POST /biomarkers
{
"biomarker_id": "6690-2",
"title": "Leukocytes",
"abbr": "WBC",
"unit": "10^9/L"
}
3. Bulk Import for Faster Setup
POST /biomarkers/bulk
{
"biomarkers": [
{
"biomarker_id": "6690-2",
"title": "Leukocytes",
"unit": "10^9/L"
},
{
"biomarker_id": "718-7",
"titleEn": "Hemoglobin",
"unit": "g/dL"
}
]
}
{
"message": "2 biomarkers imported successfully"
}
4. Biomarker Groups and Biomarkers Relationship
5. Why Setup Biomarkers and Biomarker Groups?
6. Summary of Setup Process
POST /biomarker-groups
)POST /biomarkers
)POST /biomarkers/bulk
)GET /biomarker-groups/{biomarker_group_id}
, GET /biomarkers/{biomarker_id}
)Modified atĀ 2025-03-06 09:26:02