GET api/Provider/Dashboard?ProviderID={ProviderID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
ProviderID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ActionResultViewModelOfDashboardViewModelName | Description | Type | Additional information |
---|---|---|---|
StatusCode | integer |
None. |
|
Success | boolean |
None. |
|
Message | string |
None. |
|
Result | DashboardViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "StatusCode": 1, "Success": true, "Message": "sample string 3", "Result": { "TotalPatients": 1, "PatientAlerts": 2, "PatientChartResult": [ { "FollowUpWeek": "sample string 1", "PatientCount": 2, "AverageROM": 1.1 }, { "FollowUpWeek": "sample string 1", "PatientCount": 2, "AverageROM": 1.1 } ] } }
application/xml, text/xml
Sample:
<ActionResultViewModelOfDashboardViewModeldj8jxsKO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Consensus.Ortho.Web.ViewModels.ResultViewModels"> <Message>sample string 3</Message> <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/Consensus.Ortho.Services.ViewModels.ProviderViewModels"> <d2p1:PatientAlerts>2</d2p1:PatientAlerts> <d2p1:PatientChartResult> <d2p1:WeekwisePatientAchievedROM> <d2p1:AverageROM>1.1</d2p1:AverageROM> <d2p1:FollowUpWeek>sample string 1</d2p1:FollowUpWeek> <d2p1:PatientCount>2</d2p1:PatientCount> </d2p1:WeekwisePatientAchievedROM> <d2p1:WeekwisePatientAchievedROM> <d2p1:AverageROM>1.1</d2p1:AverageROM> <d2p1:FollowUpWeek>sample string 1</d2p1:FollowUpWeek> <d2p1:PatientCount>2</d2p1:PatientCount> </d2p1:WeekwisePatientAchievedROM> </d2p1:PatientChartResult> <d2p1:TotalPatients>1</d2p1:TotalPatients> </Result> <StatusCode>1</StatusCode> <Success>true</Success> </ActionResultViewModelOfDashboardViewModeldj8jxsKO>