POST api/LateCollections/Create
Request Information
URI Parameters
None.
Body Parameters
LateCollection| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| SiteId | integer |
Required |
|
| OriginalBookingId | integer |
Required |
|
| LateTransactionDate | date |
Required |
|
| CustomerName | string |
Required |
|
| BagCount | integer |
Required |
|
| HoursLate | integer |
Required |
|
| LateFeePaid | decimal number |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"SiteId": 1,
"OriginalBookingId": 1,
"LateTransactionDate": "2026-01-04T01:49:22.9116124+00:00",
"CustomerName": "sample string 2",
"BagCount": 1,
"HoursLate": 1,
"LateFeePaid": 1.0
}
application/xml, text/xml
Sample:
<LateCollection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LuggageDrop.Models"> <BagCount>1</BagCount> <CustomerName>sample string 2</CustomerName> <HoursLate>1</HoursLate> <Id>1</Id> <LateFeePaid>1</LateFeePaid> <LateTransactionDate>2026-01-04T01:49:22.9116124+00:00</LateTransactionDate> <OriginalBookingId>1</OriginalBookingId> <SiteId>1</SiteId> </LateCollection>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |