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": "b85614e2-9f10-4adc-92dd-fd0a6662fd3d",
    "VitalID": "40881455-c6f5-4615-8419-4a273b33607b",
    "SortOrder": 1
  },
  "PatientID": "4004535b-bd3b-4197-8e27-0f53360b92fd",
  "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>4004535b-bd3b-4197-8e27-0f53360b92fd</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientDashboard>
    <PatientDashboardID>b85614e2-9f10-4adc-92dd-fd0a6662fd3d</PatientDashboardID>
    <SortOrder>1</SortOrder>
    <VitalID>40881455-c6f5-4615-8419-4a273b33607b</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": "d8a3f350-aa38-4853-950b-d161b15e6b98",
    "VitalID": "cbbefff9-918c-481b-8d7f-58cdc20b10bb",
    "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>d8a3f350-aa38-4853-950b-d161b15e6b98</PatientDashboardID>
    <SortOrder>1</SortOrder>
    <VitalID>cbbefff9-918c-481b-8d7f-58cdc20b10bb</VitalID>
  </PatientDashboard>
</PatientDashboardResponse>