null.| Parameter Name | Variable Type |
|---|---|
| lab_details | object |
| lab_details.name | string | null |
| lab_details.company_registration | string | null |
| lab_details.address | string | null |
| lab_details.phones[] | Array of strings |
| lab_details.fax | string | null |
| lab_details.email | string | null |
| lab_details.website | string | null |
| patient_details | object |
| patient_details.name | string | null |
| patient_details.ic_or_passport | string | null |
| patient_details.worker_code | string | null |
| patient_details.dob | string | null |
| patient_details.sex | string | null |
| patient_details.phone | string | null |
| referring_doctor | object |
| referring_doctor.name | string | null |
| referring_doctor.address | string | null |
| referring_doctor.doctor_code | string | null |
| specimen_details | object |
| specimen_details.specimen_types[] | Array of strings |
| specimen_details.collection_date | string | null |
| specimen_details.collection_time | string | null |
| specimen_details.collected_by | string | null |
| clinical_history_diagnosis | string | null |
| tests_requested | object |
| tests_requested.dwl_profiles[] | Array of strings |
| tests_requested.general_profiles[] | Array of strings |
| tests_requested.tag_ons_test[] | Array of strings |
| tests_requested.antenatal[] | Array of strings |
| tests_requested.dialysis_profiles[] | Array of strings |
| tests_requested.hepatitis_profiles[] | Array of strings |
| tests_requested.biochemistry[] | Array of strings |
| tests_requested.haematology[] | Array of strings |
| tests_requested.industry_testing[] | Array of strings |
| tests_requested.microbiology[] | Array of strings |
| tests_requested.serology[] | Array of strings |
| tests_requested.tumor_marker[] | Array of strings |
| additional_tests[] | Array of strings |
data array will always have the specified type, with the possibility of being null.null.{
"success": true,
"data": [
{
"type": "lab_details",
"value": {
"name": "Dunia Wellness & Laboratories Sdn Bhd",
"company_registration": "1234567-X",
"address": "Lot 88, Jalan Kesihatan, Kuala Lumpur",
"phones": ["03-12345678", "03-87654321"],
"fax": "03-11223344",
"email": "info@dunialab.my",
"website": "https://dunialab.my"
}
},
{
"type": "patient_details",
"value": {
"name": "John Doe",
"ic_or_passport": "900101141234",
"worker_code": "W123",
"dob": "1990/01/01",
"sex": "Male",
"phone": "012-3456789"
}
},
{
"type": "referring_doctor",
"value": {
"name": "Dr. Zainal",
"address": "Klinik Pakar Bangsar",
"doctor_code": "D456"
}
},
{
"type": "specimen_details",
"value": {
"specimen_types": ["Blood", "Others: Saliva"],
"collection_date": "2025/07/23",
"collection_time": "09:15am",
"collected_by": "Nurse Aida"
}
},
{
"type": "clinical_history_diagnosis",
"value": "Suspected dengue"
},
{
"type": "tests_requested",
"value": {
"dwl_profiles": ["DWL1", "DWL2"],
"general_profiles": [],
"tag_ons_test": [],
"antenatal": [],
"dialysis_profiles": [],
"hepatitis_profiles": [],
"biochemistry": [],
"haematology": [],
"industry_testing": [],
"microbiology": [],
"serology": [],
"tumor_marker": []
}
},
{
"type": "additional_tests",
"value": ["CRP"]
}
],
"miscellaneous": {
"processedTime": 5.673210123
}
}