API Docs
Inbound API
Inbound Get RN Details

Inbound Get RN Details API

Inbound Get RN Details API is used to retrieve detailed information about the specific receipt notifications in WMS. This article introduces the general Inbound Get RN Details API for easily understanding and applying this API.

Introduction

Inbound Get RN Details API allows users to access comprehensive details on each receipt, including the items received, their quantities and other related metadata. This API is essential for users who need a deeper understanding of the received goods and want to ensure accurate inventory and stock levels.

API Request

API: POST /edi/3pl/inbound/receipt/get
Body Request:

Body ParameterRequiredDescriptionNote
CompanyIDYCompany ID"LT"
FacilityIDYFacility ID"889"
CustomerIDYCustomer ID"AUKINT0001"
ReceiptIDYReceipt ID"RN-100100"

API Return

It returns receipt with the detailed data, for more detail, please refer to the following example.

Example

Request

{
	"CompanyID": "LT",
	"CustomerID": "AUKINT0001",
	"FacilityID": "889",
	"ReceiptID": "RN-100100"
}

Response

// Success return
200
{
	"Receipt": {
		"FacilityID": "889",
		"ReceiptID": "RN-10",
		"ReferenceNo": "1863",
		"PONo": "TESTCU0",
		"TitleID": "ABCD",
		"CreatedWhen": "2023-01-11T09:18:51.742",
		"UpdatedWhen": "2023-01-11T10:14:01.092",
		"BOLNo": "B22100",
		"ContainerNo": "TCLU55",
		"CarrierName": "CARRIER TRUCKER",
		"Status": "Imported",
		"DynTxtPropertyValue01": "3293",
		"DynTxtPropertyValue02": "S2022",
		"DynTxtPropertyValue03": "AMAZON",
		"ItemLines": [{
			"POLineNo": "1",
			"ItemID": "KAAPAF",
			"ItemNumber": "KAAPAF",
			"ExpectedQty": 1009,
			"LotNo": "TESTCU001",
			"Pallets": 0,
			"UOM": "EA",
			"GoodsType": "AAA"
		}]
	}
}
// Failure return
400
{
    "error": "something went wrong"
}