GET api/Provider/Patient/Reminder?reminderID={reminderID}&reminderTypeID={reminderTypeID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
reminderID | integer |
Required |
|
reminderTypeID | byte |
Required |
Body Parameters
None.
Response Information
Resource Description
ActionResultViewModelOfPatientSpecificReminderViewModelName | Description | Type | Additional information |
---|---|---|---|
StatusCode | integer |
None. |
|
Success | boolean |
None. |
|
Message | string |
None. |
|
Result | PatientSpecificReminderViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "StatusCode": 1, "Success": true, "Message": "sample string 3", "Result": { "PatientID": 1, "ReminderID": 2, "ReminderTypeID": 64, "WeekDays": { "Monday": true }, "Hours": 4, "Minutes": 5, "IsSameOtherReminder": true } }
application/xml, text/xml
Sample:
<ActionResultViewModelOfPatientSpecificReminderViewModeldj8jxsKO 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:Hours>4</d2p1:Hours> <d2p1:IsSameOtherReminder>true</d2p1:IsSameOtherReminder> <d2p1:Minutes>5</d2p1:Minutes> <d2p1:ReminderID>2</d2p1:ReminderID> <d2p1:ReminderTypeID>64</d2p1:ReminderTypeID> <d2p1:WeekDays xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfWeekDaybooleanfPjyv8OE> <d3p1:Key>Monday</d3p1:Key> <d3p1:Value>true</d3p1:Value> </d3p1:KeyValueOfWeekDaybooleanfPjyv8OE> </d2p1:WeekDays> <d2p1:PatientID>1</d2p1:PatientID> </Result> <StatusCode>1</StatusCode> <Success>true</Success> </ActionResultViewModelOfPatientSpecificReminderViewModeldj8jxsKO>