Inbound Post RN Confirmation API
Inbound Post RN Confirmation API is used to post a confirmation of inbound receipt notifications in a Warehouse Management System. This article introduces the general Inbound Post RN Confirmation API for easily understanding and applying this API.
Introduction
Inbound Post RN Confirmation API confirms the received goods match the expected shipment, ensuring accurate data entry and inventory tracking. It is crucial for validating receipt data and ensuring that inventory records are up to date following the arrival of goods in the warehouse.
API Request
API: POST /edi/3pl/inbound/receipt/post-confirmation
Body Request:
Body Parameter | Required | Description | Note |
---|---|---|---|
CompanyID | Y | Company ID | "LT" |
FacilityID | Y | Facility ID | "889" |
CustomerID | Y | Customer ID | "AUKINT0001" |
ReceiptID | Y | Receipt ID | "RN-100100" |
Confirmation | Y | Confirmation Content |
API Return
It returns the status which indicates the operation is correct or not, for more detail, please refer to the following example.
Example
Request
{
"CompanyID": "LT",
"CustomerID": "AUKINT0001",
"FacilityID": "889",
"ReceiptID": "RN-100100",
"Confirmation": {
"ReceivedDate": "2022-06-02T02:26:10.981",
"ContainerNumber": "",
"Note": "",
"Items": [
{
"POLineNo": "1",
"ItemNumber": "949",
"ItemShortDescription": "COURVOISIER VS COGNAC 7505 | ~ * | ML",
"ItemDescription": "COURVOISIER VS COGNAC 750 ML (750 ML/CQ:12)5 | ~ * | Courvoisier BRANDY",
"ReceivedQuantity": 42,
"CustomerMaterial": "",
"Diverse": null,
"ItemNote": "",
"SerialNumber": [],
"LotNo": "",
"DynTxtPropertyValue01": "000010",
"DynTxtPropertyValue02": "9703626357",
"DynTxtPropertyValue03": "GOOD",
"DynTxtPropertyValue04": "U402",
"DynTxtPropertyValue05": "1021",
"SupplierID": "ORG-3",
"SupplierName": "AUKINT0001",
"UOM": "CS",
"ExpectedQty": 42,
"ExpirationDate": "",
"SHIPMENT_LINE_ID": null,
"PalletQty": 1,
"BaseUOM": "EA",
"ReceivedBaseQty": 504,
"GoodsType": "GOOD"
}
],
"PalletQty": 1,
"Cartons": [],
"DynTxtPropertyValue01": "S1",
"DynTxtPropertyValue02": "129621590",
"DynTxtPropertyValue03": "20191227030130",
"DynTxtPropertyValue04": "0001000341",
"DynTxtPropertyValue05": "",
"DynTxtPropertyValue06": "",
"DynTxtPropertyValue07": "",
"DynTxtPropertyValue08": "",
"DynTxtPropertyValue09": "",
"DynTxtPropertyValue10": "",
"DynTxtPropertyValue11": "",
"DynTxtPropertyValue12": "",
"DynTxtPropertyValue13": "",
"DynTxtPropertyValue14": "",
"DynTxtPropertyValue15": "",
"DynTxtPropertyValue16": "",
"DynTxtPropertyValue17": "",
"DynTxtPropertyValue18": "",
"DynTxtPropertyValue19": "IG-03596584",
"DynTxtPropertyValue20": "662424795PRODLEPCHK0001",
"TitleID": "ABC",
"SupplierID": "AUKINT0001",
"SupplierName": "AUKINT0001",
"BOLNo": "UG191226H028",
"SealStatus": "",
"SCACCode": "UNKN",
"CarrierName": "UNKNOWN",
"RECEIPT_SOURCE_CODE": null,
"ORGANIZATION_CODE": null,
"TO_SUBINVENTORY": null,
"wiseCustomerId": "ORG-33333333333",
"DockCheckIn": "2022-06-02T02:23:39.644",
"DockCheckOut": "2022-06-02T02:24:25.724"
}
}
Response
// Success return
200
{
"success": true
}
// Failure return
400
{
"error": "something went wrong"
}