POST api/RemindBooking/AddRemind
Request Information
URI Parameters
None.
Body Parameters
AddRemindDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| bookingCode | string |
None. |
|
| fullName | string |
None. |
|
| brand | string |
None. |
|
| note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"bookingCode": "sample string 1",
"fullName": "sample string 2",
"brand": "sample string 3",
"note": "sample string 4"
}
application/xml, text/xml
Sample:
<AddRemindDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppSoiVe.Controllers"> <bookingCode>sample string 1</bookingCode> <brand>sample string 3</brand> <fullName>sample string 2</fullName> <note>sample string 4</note> </AddRemindDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.