POST api/Online/DepositMessage
Request Information
URI Parameters
None.
Body Parameters
DepositData| Name | Description | Type | Additional information |
|---|---|---|---|
| MerchantId | integer |
None. |
|
| BookingId | integer |
None. |
|
| Guests | integer |
None. |
|
| DepositAmount | decimal number |
None. |
|
| Name | string |
None. |
|
| string |
None. |
||
| ContactNumber | string |
None. |
|
| MerchantName | string |
None. |
|
| BookingDate | date |
None. |
|
| BookingTime | string |
None. |
|
| PerHead | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"MerchantId": 1,
"BookingId": 2,
"Guests": 1,
"DepositAmount": 3.1,
"Name": "sample string 4",
"Email": "sample string 5",
"ContactNumber": "sample string 6",
"MerchantName": "sample string 7",
"BookingDate": "2026-04-03T22:38:27.3535424+00:00",
"BookingTime": "sample string 8",
"PerHead": true
}
application/xml, text/xml
Sample:
<DepositData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LP.WebAPI.Models"> <BookingDate>2026-04-03T22:38:27.3535424+00:00</BookingDate> <BookingId>2</BookingId> <BookingTime>sample string 8</BookingTime> <ContactNumber>sample string 6</ContactNumber> <DepositAmount>3.1</DepositAmount> <Email>sample string 5</Email> <Guests>1</Guests> <MerchantId>1</MerchantId> <MerchantName>sample string 7</MerchantName> <Name>sample string 4</Name> <PerHead>true</PerHead> </DepositData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.