POST api/Patient/PatientDashboardUpdate
Request Information
URI Parameters
None.
Body Parameters
PatientDashboardUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientDashboard | PatientDashboard |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientDashboard": {
"PatientDashboardID": "0c35b0e8-83a6-4a80-b8cb-84c89a6a864e",
"VitalID": "e886047a-9bfe-4e33-896f-3d136e86e7bb",
"SortOrder": 1
},
"PatientID": "1ed8f5f2-9e66-47fe-92bd-f8d4e3e7a2d3",
"WebApiVersion": 2,
"Language": "sample string 3"
}
application/xml, text/xml
Sample:
<PatientDashboardUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<Language>sample string 3</Language>
<PatientID>1ed8f5f2-9e66-47fe-92bd-f8d4e3e7a2d3</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientDashboard>
<PatientDashboardID>0c35b0e8-83a6-4a80-b8cb-84c89a6a864e</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>e886047a-9bfe-4e33-896f-3d136e86e7bb</VitalID>
</PatientDashboard>
</PatientDashboardUpdateRequest>
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": "21445b8f-74e8-451c-845d-150628063c21",
"VitalID": "d552170b-bb74-4a12-8a79-de27327e5bca",
"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>21445b8f-74e8-451c-845d-150628063c21</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>d552170b-bb74-4a12-8a79-de27327e5bca</VitalID>
</PatientDashboard>
</PatientDashboardResponse>