API Docs
Outbound API
Outbound Get DN Details

Outbound Get DN Details API

Outbound Get DN Details API is used to retrieve detailed information about the specific DN. This article introduces the general Outbound Get DN Details API for easily understanding and applying this API.

Introduction

Outbound Get DN Details API provides comprehensive data on the selected outbound order offering insights such as the item included in the shipment, quantities, shipping info and other any associated tracking information.

API Request

API: POST /edi/3pl/outbound/order/get
Body Request:

Body ParameterRequiredDescriptionNote
CompanyIDYCompany ID"LT"
FacilityIDYFacility ID"889"
CustomerIDYCustomer ID"AUKINT0001"
OrderIDYOrder ID"DN-300100"

API Return

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

Example

Request

{
	"CompanyID": "LT",
	"CustomerID": "AUKINT0001",
	"FacilityID": "889",
	"OrderID": "DN-300100"
}

Response

// Success return 
200
{
    "Order": {
		"FacilityID": "889",
		"OrderID": "DN-31",
		"ReferenceNo": "SO000111",
		"PONo": "1MOH",
        "LoadNo": "V821-L",
		"CustomerSONo": "1MOHYZ",
        "ShipNotBefore": "2023-08-16T14:43:32",
        "ShipNoLater": "2023-09-08T23:59:33",
        "MABD": "2023-08-21T00:00:00",
        "ScheduleDate": "2023-09-04T11:07:44",
        "RequestedDeliveryDate": "2023-08-21T00:00:00",
        "AppointmentTime": "2023-08-22T01:02:00",
        "Address": {
			"ShipToName": "FAT2",
			"ShipToAddress1": "3315 N KELSEY ST",
			"ShipToCity": "VISALIA",
			"ShipToState": "CA",
			"ShipToZipCode": "93291",
			"ShipToCountry": "US",
			"ShipToContact": "FAT2"
		},
        "ShippingInfo": {
            "FreightTerm": "Prepaid",
            "ShipMethod": "LTL",
            "DeliveryService": "UULNLN",
            "SCACCode": "UPSN",
            "CarrierName": "UPS",
            "ShippingAccountNo": "ABCDEF"
        },
        "OrderTotal": {},
        "OrderNotes": {},
        "OrderType": "Regular Order",
        "Status": "Imported",
		"RetailerID": "13299 Amazon-Arovast VC US",
        "RetailerAuthorization": "AK47",
        "ItemLines": [{
			"ItemID": "HEAPA",
			"OrderedQty": 14,
			"UnitPriceCurrency": "USD",
			"UOM": "EA"
		}]
    }
}
// Failure return
400
{
    "error": "something went wrong"
}