請求批量分類

探索批量分類要求中的鍵值對。

建立新的批量項目分類要求至通用(6位數)或特定國家(8+位數)的 HS 代碼。批量分類要求的限制基於 AWS 90 秒超時,最終約為 2,000 項分類。

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

屬性 

要求主體中的 JSON 鍵值對

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

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

欄位備註
items 必需要匯出的項目清單,待分類。
item[index].item.age 選用項目的年代,例如,1784-1820西元 3 世紀
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}