get

商品情報の照会に関連するAPI

商品照会

商品照会

post

SKUまたはバーコード番号で商品を照会します。

Body
GoodsNoTypeinteger · int32Optional

検索商品番号タイプ 0 : SKU 1 : Barcode 基本値 : 0(SKU)

GoodsNoListstring[]Required

品番リスト 最大(50個)

ApiKeystringRequired

APIKey Test KEY:7abd72462c794016849abe4be

Responses
200

sucess

post
POST /api/v1/product/get HTTP/1.1
Host: api.etomars.com
Content-Type: application/json
Accept: */*
Content-Length: 100

{
  "GoodsNoType": 1,
  "GoodsNoList": [
    "880012345673",
    "880012345699"
  ],
  "ApiKey": "XXXXXXXXXXXXXXXXXXXXXXXXX"
}
{
  "Data": [
    {
      "Barcode": "text",
      "Brand": "text",
      "SKU": "text",
      "MainProductName": "text",
      "ProductNameKr": "text",
      "ProductName": "text",
      "GoodsNameExpEn": "text",
      "Hscode": "text",
      "PrimaryCategory": "text",
      "Material": "text",
      "Size": "text",
      "Color": "text",
      "Width": 1,
      "Length": 1,
      "Height": 1,
      "SellPrice": 1,
      "CurrencyUnit": "text",
      "Origin": "text",
      "SalesUnit": "text",
      "GrossWeight": 1,
      "NetWeight": 1
    }
  ],
  "Message": "text",
  "Code": 1
}

/numbers : 商品番号リストの照会

商品番号リスト照会

post

照会条件に該当するSKUまたはバーコード番号を照会します。

Body
GoodsNoTypeinteger · int32Optional

リターンを受ける番号タイプ 0 : SKU 1 : Barcode 基本値 : 0(SKU)

Barcodestring · max: 50Optional

バーコード

Brandstring · max: 50Optional

ブランド

SKUstring · max: 50Optional

商品コード

ProductNamestring · max: 80Optional

商品名

ApiKeystringRequired

APIKey Test KEY:7abd72462c794016849abe4be

Responses
200

sucess

post
POST /api/v1/product/get/numbers HTTP/1.1
Host: api.etomars.com
Content-Type: application/json
Accept: */*
Content-Length: 123

{
  "GoodsNoType": 1,
  "Barcode": "TEST",
  "Brand": "NO",
  "SKU": "TEST",
  "ProductName": "원피스",
  "ApiKey": "XXXXXXXXXXXXXXXXXXXXXXXXX"
}
{
  "Data": [
    "text"
  ],
  "Message": "text",
  "Code": 1
}

Last updated