POST services/api/v1/POS/Get_SalesDetailsforReturn_byInvNo
Request Information
URI Parameters
None.
Body Parameters
InvNo_LocId| Name | Description | Type | Additional information |
|---|---|---|---|
| InvNo | integer |
None. |
|
| locId | integer |
None. |
|
| SellingPriceLevelId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"InvNo": 1,
"locId": 2,
"SellingPriceLevelId": 3
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
POSSalesReturnMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| InvNo | integer |
None. |
|
| LocId | integer |
None. |
|
| Customer | string |
None. |
|
| TotalAmount | decimal number |
None. |
|
| Details | Collection of POSSalesReturnDetails |
None. |
Response Formats
application/json, text/json
Sample:
{
"InvNo": 1,
"LocId": 2,
"Customer": "sample string 3",
"TotalAmount": 4.0,
"Details": [
{
"SlNo": 1,
"Barcode": "sample string 2",
"Name": "sample string 3",
"Unit": "sample string 4",
"Rate": 5.0,
"Quantity": 6.0,
"ChangeQty": 7.0
},
{
"SlNo": 1,
"Barcode": "sample string 2",
"Name": "sample string 3",
"Unit": "sample string 4",
"Rate": 5.0,
"Quantity": 6.0,
"ChangeQty": 7.0
}
]
}