POST api/v1/OnlineDelTranSave
Request Information
URI Parameters
None.
Body Parameters
OnlineDeliverySaveInput| Name | Description | Type | Additional information |
|---|---|---|---|
| CompID | integer |
None. |
|
| LocID | integer |
None. |
|
| OnlineDelTranID | integer |
None. |
|
| FoodDeliveryID | string |
None. |
|
| DeliveryAmt | decimal number |
None. |
|
| TranDate | date |
None. |
|
| Mode | string |
None. |
|
| UserID | integer |
None. |
|
| Narration | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompID": 1,
"LocID": 2,
"OnlineDelTranID": 3,
"FoodDeliveryID": "sample string 4",
"DeliveryAmt": 5.0,
"TranDate": "2025-12-15T02:52:41.2953457+05:30",
"Mode": "sample string 7",
"UserID": 8,
"Narration": "sample string 9"
}
application/xml, text/xml
Sample:
<OnlineDeliverySaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CompID>1</CompID> <DeliveryAmt>5</DeliveryAmt> <FoodDeliveryID>sample string 4</FoodDeliveryID> <LocID>2</LocID> <Mode>sample string 7</Mode> <Narration>sample string 9</Narration> <OnlineDelTranID>3</OnlineDelTranID> <TranDate>2025-12-15T02:52:41.2953457+05:30</TranDate> <UserID>8</UserID> </OnlineDeliverySaveInput>
application/x-www-form-urlencoded
Sample:
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. |