Skip to content

GET /2025-07/cloud/order/time/line

Method: GET

URL:

Sandbox URL:

Description: Returns list of estimated delivery times.

Parameters required to be sent

ParameterDescriptionType
pageCurrent page number.Integer
sizeAmount of data per page.Integer
provinceProvince. The maximum length is 60.String
cityCity. The maximum length is 60.String
warehouse_codeWarehouse code. The maximum length is 32.String

Submit a "GET" request to above endpoint

Result object contains:

ParameterDescriptionType
idID.Long
warehouse_idWarehouse ID.Long
warehouse_codeWarehouse code. The maximum length is 32.String
warehouse_nameWarehouse name. The maximum length is 32.String
provinceProvince. The maximum length is 60.String
cityCity. The maximum length is 60.String
cycleShipping cycle. The unit is days.Integer

Response

json
{
  "code": 200,
  "message": "Successful!",
  "data": {
    "page": 1,
    "size": 10,
    "total": 1,
    "list": [
      {
        "id": 4064652230000001,
        "warehouse_id": 4323223230000023,
        "warehouse_code": "hk8520010",
        "warehouse_name": "ZhenHub HK8520010",
        "province": "Hong Kong",
        "city": "New Territories",
        "cycle": 2
      }
    ]
  }
}