Skip to content

GET /2025-07/cloud/inbound/{inbound_id}

Method: GET

URL:

Sandbox URL:

Description: Get inbound order details.

Parameters required to be sent

ParameterDescriptionType
inbound_idInbound ID.Long, Required

Submit a "GET" request to above endpoint

Result object contains:

ParameterDescriptionType
idInbound ID.Long
carrierCarrier. The maximum length is 32.String
tracking_noTracking No.String
expected_inbound_dateExpected inbound date.Date Time
actual_inbound_atActual inbound time.Date Time
itemsObject
  expect_quantityExpect quantity.Number
  actual_quantityActual quantity.Number
  still_need_quantityStill need quantity.Number
  sku_numberSKU No. for the product.String
package_numberPackage number.Number
referenceReference of the inbound order. The maximum length is 47.String
remarksRemarks.String
shipperShipper address.Object
  first_nameFirst name. The maximum length is 64.String
  last_nameLast name. The maximum length is 64.String
  emailEmail. The maximum length is 128.String
  phonePhone number. The maximum length is 32.String
  address1Address. The maximum length is 256.String
  address2Address 2. The maximum length is 256.String
  zip_codeZip code. The maximum length is 15.String
  districtDistrict. The maximum length is 60.String
  cityCity. The maximum length is 60.String
  provinceProvince. The maximum length is 60.String
  countryCountry. The maximum length is 60.String
  company_nameCompany name.String
statusStatus:
Pending, Partial, Completed, Cancelled, Failure.
String
warehouse_codeWarehouse code.String
exceptionalExceptional.Boolean
feedbackeg:sku Toy Bird: expect quantity is 100, but actual quantity is 103.String
print_timesPrint times.Number

Response

json
{
  "code": 200,
  "message": "Successful",
  "data": {
    "id": 443513787594258312,
    "carrier": "sf-express",
    "tracking_no": "SF7444400088263",
    "expected_inbound_date": "2019-06-03",
    "actual_inbound_at": null,
    "items": [
      {
        "expect_quantity": 10,
        "actual_quantity": 0,
        "still_need_quantity": 10,
        "sku_number": "iphone-4"
      },
      {
        "expect_quantity": 20,
        "actual_quantity": 0,
        "still_need_quantity": 20,
        "sku_number": "iphone-5"
      }
    ],
    "package_number": 1,
    "reference": "#20190603001",
    "remarks": "Please take it lightly, thank you!",
    "shipper": {
      "address1": "3131 Las Vegas Blvd. South",
      "address2": "",
      "city": "Shenzhen",
      "country": "China",
      "district": "Nanshan",
      "email": "arthur@zhenhub.com",
      "first_name": "Arthur",
      "last_name": "Chen",
      "phone": "+852 3152xxxx",
      "province": "Guangdong",
      "zip_code": "518000",
      "company_name": "Testing Company"
    },
    "warehouse_code": "warehouse01",
    "status": "Pending",
    "exceptional": false,
    "feedback": null,
    "print_times": 0
  }
}