test
Inbound API — RCM Cases (Valgen Lab)
Published 2026-06-05
(Public) INBOUND API Case - RCM (MG) for for Valgen (Lab)
Overview
Inbound API for creating RCM cases. Each endpoint accepts a patient case payload and registers it under the corresponding test panel.
Base URL — https://dashboard.gkim.digital
Authentication
All requests require an access token sent in the x-access-token header. Replace {{x-access-token}} with the token issued to you — do not commit it.
x-access-token: {{x-access-token}}
Content-Type: application/json
Create Case Immunodeficiency
POST https://dashboard.gkim.digital/api/v1/ehealth/inbound-case/data/RCM/Immunodeficiency - Valgen Jan 2025/
Headers
| Header | Value |
|---|---|
x-access-token |
{{x-access-token}} |
Content-Type |
application/json |
Request body
{
"business_id": "ff5de3a8-0694-4d1e-b796-46f94612e223",
"mss_id": "c4a53372-7673-43f0-bd6a-941e4781484a",
"rawjson": {
"patient_first_name": "Test",
"patient_mi": "",
"patient_last_name": "Patient",
"patient_dob": "2006-04-01T00:00:00+07:00",
"patient_gender": "Male",
"patient_ethnicity_selectboxes": {
"Asian": true,
"Other": false,
"Indian": false,
"Hispanic": false,
"Caucasian": false,
"Middle Eastern": false,
"French Canadian": false,
"Native American": false,
"African American": false,
"Ashkenazi Jewish": false,
"Pacific Islander": false
},
"patient_medicare_id": "7TR7FG7RT36",
"patient_primary_name": "Medicare",
"patient_primary_type": "Medicare",
"patient_primary_group": "",
"patient_secondary_name": "",
"patient_secondary_type": "",
"patient_reason_of_visit": "",
"patient_secondary_group": "",
"insurance_state_is_active": "active",
"patient_city": "Melbourne",
"patient_city_ship": "Melbourne",
"patient_email": "test@gkim.vn",
"patient_group": 401,
"patient_notes": "",
"patient_phone": "(321) 423-8438",
"patient_state": "FL",
"patient_height_in": "100",
"patient_state_ship": "FL",
"patient_address": "po box",
"patient_address_ship": "po box",
"phone_number_alternative": "(321) 423-8438",
"patient_zip_code": "32901",
"patient_zip_code_ship": "32901",
"patient_company": 4,
"patient_country": "USA",
"patient_country_ship": "USA",
"patient_shipping_same_residential": true,
"patient_language": {
"Urdu": false,
"Hindi": false,
"French": false,
"Bengali": false,
"English": true,
"Russian": false,
"Spanish": false,
"Portuguese": false,
"Standard Arabic": false,
"Mandarin Chinese": false
},
"patient_home_phone": "(321) 423-8438",
"patient_address_line2": "626/1",
"patient_best_time_call": "Afternoon",
"patient_medical_condition": [
"Chronic Condition"
],
"patient_phone_number_type": "Cell Phone",
"assessment_plan_assessment": [],
"patient_primary_insurance_id": "6TR7FG7RT33",
"patient_no_secondary_insurance": true,
"patient_secondary_insurance_id": "",
"insurance_billing_primary_insurance_id": "6TR7FG7RT36",
"insurance_billing_no_secondary_insurance": true,
"pcp_no_pcp_certification": true,
"family_history_member_1_name": "member 1",
"family_history_member_1_relation": "Father",
"family_history_member_1_sex": "Male"
}
}
Create Case Neurocognitive
POST https://dashboard.gkim.digital/api/v1/ehealth/inbound-case/data/RCM/Neurocognitive - Valgen Jan 2025/
Headers
| Header | Value |
|---|---|
x-access-token |
{{x-access-token}} |
Content-Type |
application/json |
Request body
{
"business_id": "ff5de3a8-0694-4d1e-b796-46f94612e223",
"mss_id": "c4a53372-7673-43f0-bd6a-941e4781484a",
"rawjson": {
"patient_first_name": "Test",
"patient_mi": "",
"patient_last_name": "Patient",
"patient_dob": "2006-04-01T00:00:00+07:00",
"patient_gender": "Male",
"patient_ethnicity_selectboxes": {
"Asian": true,
"Other": false,
"Indian": false,
"Hispanic": false,
"Caucasian": false,
"Middle Eastern": false,
"French Canadian": false,
"Native American": false,
"African American": false,
"Ashkenazi Jewish": false,
"Pacific Islander": false
},
"patient_medicare_id": "7TR7FG7RT36",
"patient_primary_name": "Medicare",
"patient_primary_type": "Medicare",
"patient_primary_group": "",
"patient_secondary_name": "",
"patient_secondary_type": "",
"patient_reason_of_visit": "",
"patient_secondary_group": "",
"insurance_state_is_active": "active",
"patient_city": "Melbourne",
"patient_city_ship": "Melbourne",
"patient_email": "test@gkim.vn",
"patient_group": 401,
"patient_notes": "",
"patient_phone": "(321) 423-8438",
"patient_state": "FL",
"patient_height_in": "100",
"patient_state_ship": "FL",
"patient_address": "po box",
"patient_address_ship": "po box",
"phone_number_alternative": "(321) 423-8438",
"patient_zip_code": "32901",
"patient_zip_code_ship": "32901",
"patient_company": 4,
"patient_country": "USA",
"patient_country_ship": "USA",
"patient_shipping_same_residential": true,
"patient_language": {
"Urdu": false,
"Hindi": false,
"French": false,
"Bengali": false,
"English": true,
"Russian": false,
"Spanish": false,
"Portuguese": false,
"Standard Arabic": false,
"Mandarin Chinese": false
},
"patient_home_phone": "(321) 423-8438",
"patient_address_line2": "626/1",
"patient_best_time_call": "Afternoon",
"patient_medical_condition": [
"Chronic Condition"
],
"patient_phone_number_type": "Cell Phone",
"assessment_plan_assessment": [],
"patient_primary_insurance_id": "6TR7FG7RT33",
"patient_no_secondary_insurance": true,
"patient_secondary_insurance_id": "",
"insurance_billing_primary_insurance_id": "6TR7FG7RT36",
"insurance_billing_no_secondary_insurance": true,
"pcp_no_pcp_certification": true,
"family_history_member_1_name": "member 1",
"family_history_member_1_relation": "Father",
"family_history_member_1_sex": "Male"
}
}