POST api/ReturnSale/FullSaleReturnOnline
Request Information
URI Parameters
None.
Body Parameters
ReturnFullSaleRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| SaleID | integer |
Required |
|
| UpdatedByID | integer |
None. |
|
| PaymentModeID | integer |
None. |
|
| CashRegisterHistoryID | integer |
Required |
|
| OutletID | integer |
Required |
Request Formats
application/json, text/json
Sample:
{
"SaleID": 1,
"UpdatedByID": 2,
"PaymentModeID": 3,
"CashRegisterHistoryID": 1,
"OutletID": 1
}
application/xml, text/xml
Sample:
<ReturnFullSaleRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Request"> <CashRegisterHistoryID>1</CashRegisterHistoryID> <OutletID>1</OutletID> <PaymentModeID>3</PaymentModeID> <SaleID>1</SaleID> <UpdatedByID>2</UpdatedByID> </ReturnFullSaleRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 1,
"ResponseText": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <ResponseCode>1</ResponseCode> <ResponseText>sample string 2</ResponseText> </ResponseDetail>