申請批量分類

探索批量分類請求中的關鍵/值對。

建立一個新的批量商品分類請求,可分類至通用(6位數)或特定國家(8位數以上)HS 碼。批量分類請求限制是基於 AWS 90 秒超時,最多約 2,000 個分類。

注意: 若要獲取分類,您必須提供 description。您可以選擇提供任何欄位,但我們建議您提供盡可能多的資訊以獲得更準確的分類。

屬性 

請求本文中的 JSON 鍵/值對

POST | https://api.zonos.com/v1/classify/bulk

上述標題是此批量分類請求成功完成所需的必要輸入。

欄位說明
items 必需要分類的待出口商品清單。
item[index].item.age 可選商品的年份,例如 1784-18203rd Century A.D.
items[index].item.amount 可選商品的價格。
items[index].item.brand 可選商品的品牌。
items[index].item.category 可選商品類別。
items[index].item.description 必需商業發票中的商品描述。此描述通常不同於零售描述,通常包括商品是什麼、由什麼製成以及用途的一般描述。
items[index].item.detail 可選商品的其他功能、屬性或描述。
items[index].item.gender 可選與商品相關的性別參考。
items[index].item.hs_code 可選HS 碼已知的位數,用於子分類,例如 如果您要分類一份針織服裝清單,輸入 61 強制邏輯在第 61 章中找到碼。
items[index].item.image_url 可選圖像 URL。
items[index].item.language_code 可選ISO 639-1 語言代碼。如果為 null,則默認為英文。
item[index].material 可選商品的材料組成。
item[index].product_id 可選商人或出口商的商品唯一識別碼。
item[index].sub_category 可選與商品最相關的類別。
ship_to_countries 可選目的地國家,由 二位字母 ISO 代碼表示。此欄位是國家特定 HTS 八位數以上分類的必需欄位。

範例請求

1{
2 "items": [
3 {
4 "item": {
5 "id": "29342",
6 "amount": 12.99,
7 "brand": null,
8 "category": "women's clothing",
9 "description": "Cozy Design Women's Knitted Gloves with Roll Up Cuffs for Winter",
10 "detail": null,
11 "gender": "women",
12 "hs_code": "6116",
13 "image_url": "https://zonos.com/images/cozygloves.webp",
14 "item_age": null,
15 "language_code": "en",
16 "material": "cotton",
17 "product_id": "895669256385",
18 "sub_category": "women's accessories"
19 }
20 },
21 {
22 "item": {
23 "id": "29343",
24 "amount": 19.99,
25 "brand": null,
26 "category": null,
27 "description": "Cadet Army Cap Basic Everyday Military Style Hat",
28 "detail": null,
29 "gender": "men's",
30 "hs_code": null,
31 "image_url": "https://zonos.com/images/cadethat.webp",
32 "item_age": null,
33 "language_code": "en",
34 "material": null,
35 "product_id": "895669256378",
36 "sub_category": null
37 }
38 },
39 {
40 "item": {
41 "id": "29344",
42 "amount": 45.29,
43 "brand": "Ray Ban",
44 "category": "Accessories",
45 "description": "Vintage Aviator Square Sunglasses",
46 "detail": null,
47 "gender": null,
48 "hs_code": null,
49 "image_url": "https://zonos.com/images/vintagesunglasses.webp",
50 "item_age": null,
51 "language_code": "en",
52 "material": null,
53 "product_id": "895669256399",
54 "sub_category": "Sunglasses"
55 }
56 }
57 ],
58 "ship_to_countries": [
59 "CA",
60 "FR"
61 ]
62}