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": "ace4810b-842c-4dde-a469-5fe290137ae3",
"VitalID": "5e33accb-7aa3-4b2d-8246-9b74e9d21a0b",
"SortOrder": 1
},
"PatientID": "1f9c58b4-c1ae-41ee-8f9f-501307397d4f",
"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>1f9c58b4-c1ae-41ee-8f9f-501307397d4f</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientDashboard>
<PatientDashboardID>ace4810b-842c-4dde-a469-5fe290137ae3</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>5e33accb-7aa3-4b2d-8246-9b74e9d21a0b</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": "4e9d0bb5-77a8-40eb-8030-b63dcda71f62",
"VitalID": "175a5b46-9880-45f4-8b51-e28de32473b9",
"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>4e9d0bb5-77a8-40eb-8030-b63dcda71f62</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>175a5b46-9880-45f4-8b51-e28de32473b9</VitalID>
</PatientDashboard>
</PatientDashboardResponse>