POST api/ShoppingCart/SubmitLot
Request Information
URI Parameters
None.
Body Parameters
LotMasterViewModelName | Description | Type | Additional information |
---|---|---|---|
lotMasterID | integer |
None. |
|
lotName | string |
None. |
|
marginType | boolean |
None. |
|
marginValue | decimal number |
None. |
|
currencyID | byte |
None. |
|
currencySymbol | string |
None. |
|
createdBy | integer |
None. |
|
createdDate | date |
None. |
|
modifiedBy | integer |
None. |
|
modifiedDate | date |
None. |
|
isActive | boolean |
None. |
|
isDeleted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "lotMasterID": 1, "lotName": "sample string 2", "marginType": true, "marginValue": 4.0, "currencyID": 64, "currencySymbol": "sample string 6", "createdBy": 7, "createdDate": "2025-04-29T20:34:13.7675874+05:30", "modifiedBy": 1, "modifiedDate": "2025-04-29T20:34:13.7675874+05:30", "isActive": true, "isDeleted": true }
application/xml, text/xml
Sample:
<LotMasterViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Petra_Mobile_API.ViewModels"> <createdBy>7</createdBy> <createdDate>2025-04-29T20:34:13.7675874+05:30</createdDate> <currencyID>64</currencyID> <currencySymbol>sample string 6</currencySymbol> <isActive>true</isActive> <isDeleted>true</isDeleted> <lotMasterID>1</lotMasterID> <lotName>sample string 2</lotName> <marginType>true</marginType> <marginValue>4</marginValue> <modifiedBy>1</modifiedBy> <modifiedDate>2025-04-29T20:34:13.7675874+05:30</modifiedDate> </LotMasterViewModel>
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.