POST api/Patient/PatientDashboardAdd
Request Information
URI Parameters
None.
Body Parameters
PatientDashboardAddRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientDashboardAdd | PatientDashboardAdd |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientDashboardAdd": {
"VitalID": "8e57541c-2843-41ed-be62-810bb281fef6",
"SortOrder": 1
},
"PatientID": "2ae88899-17c3-4aa9-9f45-e54df1bdced9",
"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>2ae88899-17c3-4aa9-9f45-e54df1bdced9</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientDashboardAdd>
<SortOrder>1</SortOrder>
<VitalID>8e57541c-2843-41ed-be62-810bb281fef6</VitalID>
</PatientDashboardAdd>
</PatientDashboardAddRequest>
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": "c15d22c2-f956-4bea-8c70-dea1e8640b6a",
"VitalID": "d9e9292c-ec0e-4be1-8aeb-c0de9d81443c",
"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>c15d22c2-f956-4bea-8c70-dea1e8640b6a</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>d9e9292c-ec0e-4be1-8aeb-c0de9d81443c</VitalID>
</PatientDashboard>
</PatientDashboardResponse>