POST api/Patient/PatientDashboardAdd

Request Information

URI Parameters

None.

Body Parameters

PatientDashboardAddRequest
NameDescriptionTypeAdditional information
PatientDashboardAdd

PatientDashboardAdd

None.

PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientDashboardAdd": {
    "VitalID": "5be61425-84e9-4a13-8999-935e80a7d6ac",
    "SortOrder": 1
  },
  "PatientID": "275de03a-8686-46d3-a04d-162369a7cea5",
  "WebApiVersion": 2,
  "Language": "sample string 3"
}

application/xml, text/xml

Sample:
<PatientDashboardAddRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <Language>sample string 3</Language>
  <PatientID>275de03a-8686-46d3-a04d-162369a7cea5</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientDashboardAdd>
    <SortOrder>1</SortOrder>
    <VitalID>5be61425-84e9-4a13-8999-935e80a7d6ac</VitalID>
  </PatientDashboardAdd>
</PatientDashboardAddRequest>

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": "863f7747-057c-42e1-bdd5-94577180b02a",
    "VitalID": "c759a7a1-a663-4fb6-8141-8a604f70110d",
    "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>863f7747-057c-42e1-bdd5-94577180b02a</PatientDashboardID>
    <SortOrder>1</SortOrder>
    <VitalID>c759a7a1-a663-4fb6-8141-8a604f70110d</VitalID>
  </PatientDashboard>
</PatientDashboardResponse>