POST api/Reminder/SaveReminderConfiguration
Request Information
URI Parameters
None.
Body Parameters
AppointmentReminderModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| ValidFrom | string |
None. |
|
| ValidTo | string |
None. |
|
| Days | integer |
None. |
|
| Time | string |
None. |
|
| Message | string |
None. |
|
| ToStaff | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"ValidFrom": "sample string 2",
"ValidTo": "sample string 3",
"Days": 4,
"Time": "sample string 5",
"Message": "sample string 6",
"ToStaff": true
}
application/xml, text/xml
Sample:
<AppointmentReminderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSI.Cx360.WebAPI.Models.Reminder"> <Days>4</Days> <ID>1</ID> <Message>sample string 6</Message> <Time>sample string 5</Time> <ToStaff>true</ToStaff> <ValidFrom>sample string 2</ValidFrom> <ValidTo>sample string 3</ValidTo> </AppointmentReminderModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />