Get Receiving Note (GRN)
GET
/api/v2/sellers/shipments/receiving/{shipment_code}/Last modified: 8 months ago
Get Receving Note (GRN) after shipment inbound successfully.
Request
Path Params
shipment_code
string
required
Query Params
keyword
string
optional
Filter with: bsin, seller_sku
Example:
BSN33152937466714
condition_level
string
optional
A, D1, D2, D3, L, DE
Example:
A
batch_lot
string
optional
Example:
331529-26083198
expiry_date
integer
optional
Unix timestamp EXP date
Header Params
Authorization
string
optional
Example:
Token {{API_TOKEN}}
Content-Type
string
optional
Example:
application/json
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
object
required
total_count
integer
required
inspections
array [object {10}]
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
string
required
Example
{
"data": {
"total_count": 3,
"inspections": [
{
"seller_sku": "SUATHTRUEMILK",
"bsin": "BSN33152937466714",
"product_name": "Sữa tươi TH true milk (hộp)",
"quantity": 180,
"condition_level": "A",
"batch_lot": "331529-26083198",
"expiry_date": 1709226000,
"note": "Test check",
"line_no": "101001",
"created_time": 1707982450
},
{
"seller_sku": "SUATHTRUEMILK",
"bsin": "BSN33152937466714",
"product_name": "Sữa tươi TH true milk (hộp)",
"quantity": 300,
"condition_level": "A",
"batch_lot": "331529-26083198",
"expiry_date": 1709226000,
"note": "Test check",
"line_no": "201001",
"created_time": 1707981365
},
{
"seller_sku": "SUATHTRUEMILK",
"bsin": "BSN33152937466714",
"product_name": "Sữa tươi TH true milk (hộp)",
"quantity": 20,
"condition_level": "A",
"batch_lot": "331529-26083198",
"expiry_date": 1709226000,
"note": "Test check",
"line_no": "101001",
"created_time": 1707981365
}
]
},
"error": false,
"error_code": "",
"messages": "",
"request_id": "65cee2f9ee33d6faf4f6ee79"
}
Last modified: 8 months ago