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": "7ff84d23-848f-4f4e-bed2-f07f516bb125",
"VitalID": "fc7163ff-8e2e-4191-a6b8-41662cbc6bde",
"SortOrder": 1
},
"PatientID": "33f9a4f6-0575-4e95-92bd-62613abc1cf0",
"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>33f9a4f6-0575-4e95-92bd-62613abc1cf0</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientDashboard>
<PatientDashboardID>7ff84d23-848f-4f4e-bed2-f07f516bb125</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>fc7163ff-8e2e-4191-a6b8-41662cbc6bde</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": "75b3845c-b3e7-4fb5-8c01-9f74cf2e1ba6",
"VitalID": "49550182-64b0-47b9-a4a1-a3aeecf7182a",
"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>75b3845c-b3e7-4fb5-8c01-9f74cf2e1ba6</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>49550182-64b0-47b9-a4a1-a3aeecf7182a</VitalID>
</PatientDashboard>
</PatientDashboardResponse>