POST api/Patient/PatientDashboardUpdate

Request Information

URI Parameters

None.

Body Parameters

PatientDashboardUpdateRequest
NameDescriptionTypeAdditional information
PatientDashboard

PatientDashboard

None.

PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientDashboard": {
    "PatientDashboardID": "667da2a2-caea-4456-b2de-fdb09a72ac6d",
    "VitalID": "c9fae8ee-456e-4961-8b21-32f41dd6359c",
    "SortOrder": 1
  },
  "PatientID": "017e696a-55fd-4be9-92f5-05404c6b197d",
  "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>017e696a-55fd-4be9-92f5-05404c6b197d</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientDashboard>
    <PatientDashboardID>667da2a2-caea-4456-b2de-fdb09a72ac6d</PatientDashboardID>
    <SortOrder>1</SortOrder>
    <VitalID>c9fae8ee-456e-4961-8b21-32f41dd6359c</VitalID>
  </PatientDashboard>
</PatientDashboardUpdateRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PatientDashboardResponse
NameDescriptionTypeAdditional information
PatientDashboard

PatientDashboard

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "PatientDashboard": {
    "PatientDashboardID": "78496b7a-3425-4c12-8e2d-4d59308139f2",
    "VitalID": "dda759e2-6da8-446e-a6ac-8a661847dae9",
    "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>78496b7a-3425-4c12-8e2d-4d59308139f2</PatientDashboardID>
    <SortOrder>1</SortOrder>
    <VitalID>dda759e2-6da8-446e-a6ac-8a661847dae9</VitalID>
  </PatientDashboard>
</PatientDashboardResponse>