POST api/Patient/PatientDashboardAdd
Request Information
URI Parameters
None.
Body Parameters
PatientDashboardAddRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientDashboardAdd | PatientDashboardAdd |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientDashboardAdd": {
"VitalID": "b975b3d4-8c3c-4e75-8454-2ceaabdf2ee3",
"SortOrder": 1
},
"PatientID": "c921fb98-d498-4035-8261-426aec19b2ff",
"WebApiVersion": 2,
"Language": "sample string 3"
}
application/xml, text/xml
Sample:
<PatientDashboardAddRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<Language>sample string 3</Language>
<PatientID>c921fb98-d498-4035-8261-426aec19b2ff</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientDashboardAdd>
<SortOrder>1</SortOrder>
<VitalID>b975b3d4-8c3c-4e75-8454-2ceaabdf2ee3</VitalID>
</PatientDashboardAdd>
</PatientDashboardAddRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PatientDashboardResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientDashboard | PatientDashboard |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientDashboard": {
"PatientDashboardID": "83d98951-683c-41e5-bc60-b1258b1ec88a",
"VitalID": "b3e0ee2b-570b-44d6-be6f-f908b066ffa9",
"SortOrder": 1
},
"WebApiVersion": 1
}
application/xml, text/xml
Sample:
<PatientDashboardResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>1</WebApiVersion>
<PatientDashboard>
<PatientDashboardID>83d98951-683c-41e5-bc60-b1258b1ec88a</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>b3e0ee2b-570b-44d6-be6f-f908b066ffa9</VitalID>
</PatientDashboard>
</PatientDashboardResponse>