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": "3bbc2336-2947-44d3-a02b-3ab6702a09ca",
"SortOrder": 1
},
"PatientID": "c3703d38-1eae-40a6-afc2-78d763c77232",
"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>c3703d38-1eae-40a6-afc2-78d763c77232</PatientID>
<WebApiVersion>2</WebApiVersion>
<PatientDashboardAdd>
<SortOrder>1</SortOrder>
<VitalID>3bbc2336-2947-44d3-a02b-3ab6702a09ca</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": "8f5b9134-a422-4e33-95e7-7d78fb185023",
"VitalID": "3f8feab1-d165-454d-88e9-7596a0d0ef6b",
"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>8f5b9134-a422-4e33-95e7-7d78fb185023</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>3f8feab1-d165-454d-88e9-7596a0d0ef6b</VitalID>
</PatientDashboard>
</PatientDashboardResponse>