DOCS

Request a classification

/

分類をリクエストする

分類リクエストのキー/バリューペアを探ります。

アイテム分類の新しいリクエストを、ユニバーサル(6桁)または国固有(8桁以上)HS コードに対して作成します。

注意: 分類を取得するには、description を提供する必要があります。どのフィールドを提供するかはあなた次第ですが、より正確な分類を受け取るためにできるだけ多くの情報を提供することをお勧めします。

属性 

リクエストボディ内の JSON キー/バリューペア

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

フィールドノート
item 必須分類されるために輸出されるアイテム。
item.age 任意アイテムの年齢。例: “1784-1820” または “3世紀 A.D.”
item.amount 任意アイテムの価格。
item.brand 任意アイテムのブランド。
item.category 任意アイテムのカテゴリ。
item.description 必須商業インボイス用の商品の説明。この説明は通常、小売説明とは異なり、何であるか、何から作られているか、何に使われるかの一般的な説明を含みます。
item.detail 任意アイテムの追加機能、属性、または説明。
item.gender 任意アイテムに関連する性別の参照。
item.hs_code 任意サブ分類に使用される HS コードの既知の桁数。例: ニット衣類のリストを分類する場合は、“61” を入力してロジックが章61内のコードを見つけるように強制します。
item.image_url 任意画像の URL。
item.language_code 任意ISO 639-1 言語コードnull の場合、英語がデフォルト言語です。
item.material 任意アイテムの材料構成。
item.product_id 任意小売業者または輸出者の製品に対するユニークなアイテム識別子。
item.sku 任意アイテムの SKU。
item.sub_category 任意アイテムに最も密接に関連するカテゴリ。
ship_to_country 任意二文字の ISO コード で表される目的地国。このフィールドは、国固有の HTS 8桁以上の分類には必須です。

Classify リクエスト

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "item": {
    "id": "29342",
    "amount": 12.99,
    "brand": null,
    "category": "women's clothing",
    "description": "Cozy Design Women's Knitted Gloves with Roll Up Cuffs for Winter",
    "detail": null,
    "gender": "women",
    "hs_code": "6116",
    "image_url": "https://zonos.com/images/cozygloves.png",
    "item_age": null,
    "language_code": "en",
    "material": "cotton",
    "product_id": "895669256385",
    "sub_category": "women's accessories"
  },
  "ship_to_country": null
}

例の応答

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  "id": "clfy_6PU4EDbKE1DlDMYxbDwyfK",
  "product_id": "895669256385",
  "classified_code": "6116.99",
  "codes": [
    {
      "code": "6116.99",
      "description": "Other: Of other textile materials",
      "type": "subHeading"
    },
    {
      "code": "6116",
      "description": "Gloves, mittens, and mitts, knitted or crocheted",
      "type": "heading"
    },
    {
      "code": "61",
      "description": "Apparel and clothing, knitted or crocheted",
      "type": "chapter"
    }
  ],
  "providedHsCodeStatus": "VALID",
  "combinedDescription": "Gloves, mittens and mitts, knitted or crocheted: of other textile materials",
  "truncatedCombinedDescription": "Gloves, mittens and mitts, knitted or crocheted"
}

このページは役に立ちましたか?


このページには: