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 Name | Data Type | Description |
---|---|---|
Data/AsnNumber | String | |
Data/ReceiptType | String | The type of the ASN: SupplierReceipt. Regular inbound shipment ASN.Return. Return shipment by carrier or end consumer. |
Data/ReferenceNumber | String | The reference number of the ASN, available if it is provided when create the ASN. |
Data/TrackingNumber | String | The tracking number that is used to deliver the package(s) to Best Inc. warehouse. It is avaialble for Return receipts only. |
Data/UploadTime | DateTime | The date and time when the ASN is uploaded into Best Inc. system. Based on UTC time zone. |
Data/ArrivalTime | DateTime | The date and time when the ASN is arrived into Best Inc. warehouse. Based on UTC time zone. |
Data/CloseTime | DateTime | The date and time when the ASN process is completed in Best Inc. wareouse. Based on UTC time zone. |
Data/Details | Array<Object> | The item list in the ASN |
Data/Details/SKU | String | The number of the item. |
Data/Details/Condition | String | The condition of the item when arrival, value could be Good or Damaged. |
Data/Details/UnitOfMeasure | String | The unit of measure for the item quantity, it’s always Each at this moment. |
Data/Details/Quantity | Integer | The original quantity of the item. It’s only applicable when Condition is Good, for other condition records, it will be 0 always. |
Data/Details/ReceivedTotalQty | Integer | The actual received quantity for the item. |
Data/Details/ReceivedAvailableQty | Integer | The 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" }