curl --location --request POST 'https://auth.efris.kakasa.xyz/api/v1/efris/stock-in' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"supplierTin": "",
"supplierName": "Supplier Inc",
"remarks": "Remarks on this stock",
"stockInDate": "2025-10-16",
"stockInType": "102", //required
//101: Import
//102: Local Purchase
//103: Manufacturing/Assembling
//104: Opening Stock
"productionBatchNo": "",
"productionDate": "",
"stockInItem": [
{
"itemCode": "DFOO1",
"quantity": 398, //50398
"unitPrice": 5500
}
]
}'