How Can We Help?
< All Topics
Print

Notification Type- ASN Closed

For each ASN, after the receiving and put-away is completed in Best Inc. warehouse, an ASN closure notification will be generated accordingly and available to be accessed by any notification API.

When you pull an ASN Closure notification, the special content under data node will be provided, refer to following section for details.

Notification Data

Attribute List

Element NameData TypeDescription
Data/AsnNumberString
Data/ReceiptTypeStringThe type of the ASN:
SupplierReceipt. Regular inbound shipment ASN.Return. Return shipment by carrier or end consumer.
Data/ReferenceNumberStringThe reference number of the ASN, available if it is provided when create the ASN.
Data/TrackingNumberStringThe tracking number that is used to deliver the package(s) to Best Inc. warehouse. It is avaialble for Return receipts only.
Data/UploadTimeDateTimeThe date and time when the ASN is uploaded into Best Inc. system. Based on UTC time zone.
Data/ArrivalTimeDateTimeThe date and time when the ASN is arrived into Best Inc. warehouse. Based on UTC time zone.
Data/CloseTimeDateTimeThe date and time when the ASN process is completed in Best Inc. wareouse. Based on UTC time zone.
Data/DetailsArray<Object>The item list in the ASN
Data/Details/SKUStringThe number of the item.
Data/Details/ConditionStringThe condition of the item when arrival, value could be Good or Damaged.
Data/Details/UnitOfMeasureStringThe unit of measure for the item quantity, it’s always Each at this moment.
Data/Details/QuantityIntegerThe original quantity of the item. It’s only applicable when Condition is Good, for other condition records, it will be 0 always.
Data/Details/ReceivedTotalQtyIntegerThe actual received quantity for the item.
Data/Details/ReceivedAvailableQtyIntegerThe quantity of the SKU that is received and put into storage area, ready for order fulfillment.

Example

The following example will be returned for Get Notification of ASN Closed

{
    "id": 116137,
    "eventType": "AsnClosed",
    "eventTime": "2020-04-30T16:54:00-07:00",
    "customerCode": "TEST",
    "warehouseCode": "USNJ01",
    "transactionId": 1092748,
    "transactionNumber": "RT-0430A015",
    "data": {
        "asnNumber": "RT-0430A015",
        "receiptType": "Return",
        "referenceNumber": "SO-985730",
        "trackingNumber": "1Z348967394773",
        "uploadTime": "2020-04-25T10:47:53-07:00",
        "arrivalTime": "2020-04-30T11:33:03-07:00",
        "closeTime": "2020-04-30T16:54:00-07:00",
        "details": [
            {
                "sku": "LFT0003",
                "condition": "Good",
                "unitOfMeasure": "Each",
                "quantity": 3,
                "receivedTotalQty": 2,
                "receivedAvailableQty": 2
            },
            {
                "sku": "LFT0003",
                "condition": "Damaged",
                "unitOfMeasure": "Each",
                "quantity": 0,
                "receivedTotalQty": 1,
                "receivedAvailableQty": 1
            }
        ]
    },
    "status": "Acknowledged",
    "acknowledgedTime": "2020-04-30T17:50:00-07:00"
}
Previous Acknowledge Notification by ID
Next Notification Type- Order Shipped
Table of Contents