POST api/RemindBooking/AddRemind

Request Information

URI Parameters

None.

Body Parameters

AddRemindDTO
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AddRemindDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.