Product Stock Lot
Product lot movement information
API Endpoint
URL |
{base url}/api/StockTransfer/ProductStockLot |
Method |
GET |
Authorization |
Bearer Token |
Content-Type |
application/json |
Request Headers
Parameter |
Type |
Required |
Description |
APIKEY |
string |
true |
System key code |
Request Parameters
Parameter |
Type |
Required |
Description |
SkuName |
string |
false |
SKU Name |
SkuCode |
string |
false |
SKU Code |
Request Example
{base url}/api/StockTransfer/ProductStockLot?SkuName={Value}&SkuCode={Value}
Response Parameters
Parameter |
Type |
Description |
Id |
integer |
Error status (0 = no error) |
Success |
boolean |
Status of the request |
Message |
string |
Response message |
RequestId |
string |
Reference ID for the request |
Size |
integer |
Number of records returned |
Data |
object |
data |
Data
Parameter |
Type |
Description |
Seller |
string |
Merchant Code |
SKUCode |
string |
SKU Code |
SKUName |
string |
SKU Name |
Storer |
string |
BL internal warehouse |
QTY |
integer |
quantity |
Batch |
string |
Details/Movement/Notes |
MFG |
string |
manufacturing date |
EXP |
string |
expire date |
Response JSON Example
{
"Id": 0,
"Success": true,
"Message": "SUCCESS",
"RequestId": "REQ123456789",
"Size": 2,
"Data": [
{
"Seller": "22056",
"SKUCode": "ABC123",
"SKUName": "16 inch table fan",
"Storer": "SELLER001",
"QTY": 120,
"Batch": "",
"MFG": "01/04/2024",
"EXP": "01/04/2027"
},
{
"Seller": "22056",
"SKUCode": "XYZ789",
"SKUName": "Air purifier model A1",
"Storer": "SELLER001",
"QTY": 50,
"Batch": "Move from SELLER002",
"MFG": "15/03/2024",
"EXP": "15/03/2028"
}
]
}