POST api/Patient/GetPatientDashboard
Request Information
URI Parameters
None.
Body Parameters
PageRequestBase| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageNumber": 1,
"PageCount": 2,
"PatientID": "998bb1ab-861a-415d-a058-eb1201d64253",
"WebApiVersion": 4,
"Language": "sample string 5"
}
application/xml, text/xml
Sample:
<PageRequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 5</Language> <PatientID>998bb1ab-861a-415d-a058-eb1201d64253</PatientID> <WebApiVersion>4</WebApiVersion> <PageCount>2</PageCount> <PageNumber>1</PageNumber> </PageRequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientDashboardResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientDashboard | Collection of PatientDashboard |
None. |
|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| TotalCount | integer |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientDashboard": [
{
"PatientDashboardID": "db0a9eb2-d55c-4788-8c56-fa706ead57b0",
"VitalID": "59842125-b62e-4f11-bbeb-6e9e238482af",
"SortOrder": 1
},
{
"PatientDashboardID": "db0a9eb2-d55c-4788-8c56-fa706ead57b0",
"VitalID": "59842125-b62e-4f11-bbeb-6e9e238482af",
"SortOrder": 1
}
],
"PageNumber": 1,
"PageCount": 2,
"TotalCount": 3,
"WebApiVersion": 4
}
application/xml, text/xml
Sample:
<GetPatientDashboardResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>4</WebApiVersion>
<PageCount>2</PageCount>
<PageNumber>1</PageNumber>
<TotalCount>3</TotalCount>
<PatientDashboard>
<PatientDashboard>
<PatientDashboardID>db0a9eb2-d55c-4788-8c56-fa706ead57b0</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>59842125-b62e-4f11-bbeb-6e9e238482af</VitalID>
</PatientDashboard>
<PatientDashboard>
<PatientDashboardID>db0a9eb2-d55c-4788-8c56-fa706ead57b0</PatientDashboardID>
<SortOrder>1</SortOrder>
<VitalID>59842125-b62e-4f11-bbeb-6e9e238482af</VitalID>
</PatientDashboard>
</PatientDashboard>
</GetPatientDashboardResponse>