POST services/api/v1/Get_LocationStockListByBarcode
Request Information
URI Parameters
None.
Body Parameters
LocationStockList_Req| Name | Description | Type | Additional information |
|---|---|---|---|
| Barcode | string |
None. |
|
| LocationId | integer |
None. |
|
| CompanyId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Barcode": "sample string 1",
"LocationId": 2,
"CompanyId": 3
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
LocationStockList_Master| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemId | integer |
None. |
|
| Barcode | string |
None. |
|
| ItemName | string |
None. |
|
| Unit | string |
None. |
|
| Contain | decimal number |
None. |
|
| TaxRate | decimal number |
None. |
|
| CurrentStock | decimal number |
None. |
|
| LocationStockList | Collection of BOStockHistory_Master |
None. |
Response Formats
application/json, text/json
Sample:
{
"ItemId": 1,
"Barcode": "sample string 2",
"ItemName": "sample string 3",
"Unit": "sample string 4",
"Contain": 5.0,
"TaxRate": 6.0,
"CurrentStock": 7.0,
"LocationStockList": [
{
"Location": "sample string 1",
"Qty": 2.0
},
{
"Location": "sample string 1",
"Qty": 2.0
}
]
}