Availability for specific delivery date

Summary

This endpoint provides available stock quantities over facilities for items on a specific delivery date. This information can be used to determine the availability of certain products for a delivery day selected by the customer.

Request & response

Request

  • desiredDeliveryDate: Date when the items should arrive at the customer.

  • tenantArticleIds: Contains all tenantArticleIds that the customer is interested in buying.

  • facilityRef: Contains facilities that should be considered for the delivery.

  • latestPickingStart: This is the point in time at which the picking for the delivery must be started in order to arrive in time at the customer. If the latest possible picking start for a certain delivery date in a facility is not known, it can be requested via the Checkout Options endpoint. Systems then calculate the latest picking start based on cut-off time of carriers and fulfillment process buffer.

Response

The response lists the available quantity for all requested items and facilities. Facility / item combinations with zero availability are included.

Expected stocks that were announced via purchase order are also considered in the response. Only purchase orders with requestedDate.type "ASAP" are not considered as these deliveries are expected to arrive as soon as possible and there is no exact date that can be used to check the potential availability of these stocks for incoming orders.

Example response

{
    "items": [
        {
            "facilityRef": "cgn-01",
            "tenantArticleId": "0631",
            "available": 300
        },
        {
            "facilityRef": "cgn-01",
            "tenantArticleId": "2027",
            "available": 200
        },
        {
            "facilityRef": "dus-01",
            "tenantArticleId": "06031",
            "available": 4
        },
        {   
            "facilityRef": "dus-01",
            "tenantArticleId": "2027",
            "available": 0
        }
    ]
}

Last updated