API GUIDE
Etomars API Guide KR
Etomars API Guide KR
  • Wellcome!
  • API Guide
    • API 기본정보
    • Invoice
      • get
      • add
      • delete
      • update
      • label
      • getprintdata
    • Product
      • get
      • add
    • Package
      • get
      • add
    • Inbound
      • get
      • add
    • Outbound
      • get
    • Inventory
      • get
    • Report
      • get/order-status
      • get/delivery-info
    • Sales site
      • qoo10
  • Etc
    • API 변경 로그
    • exceptional 공통코드
Powered by GitBook
On this page
  1. API Guide
  2. Product

get

상품정보 조회와 관련된 API

PreviousProductNextadd

Last updated 9 months ago

상품조회

/numbers : 상품번호목록 조회

  • 상품조회
  • POST상품조회
  • /numbers : 상품번호목록 조회
  • POST상품번호목록 조회

상품조회

post

SKU 또는 바코드 번호로 상품을 조회합니다.

Body
GoodsNoTypeinteger · int32Optional

검색 상품번호 타입 0 : SKU 1 : Barcode 기본값 : 0(SKU)

GoodsNoListstring[]Required

상품 번호 리스트 최대(50개)

ApiKeystringRequired

APIKey 테스트 KEY:7abd72462c794016849abe4be

Responses
200
sucess
400
Valid Fail
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
}

상품번호목록 조회

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 테스트 KEY:7abd72462c794016849abe4be

Responses
200
sucess
400
Valid Fail
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
}