본문 바로가기
상품API/카테고리 | 브랜드 조회 API

브랜드코드 조회 API

Description
브랜드명 조회 : [GET] https://sa2.esmplus.com/item/v1/catalogs/brands/{brandName}
제조사명 조회 : [GET] https://sa2.esmplus.com/item/v1/catalogs/makers/{makerName}
ESM 브랜드 코드 조회하여 상품등록시 입력합니다.
ESM 브랜드 코드는 등록 가능한 코드가 지정되어 있고 브랜드가 조회되지 않을 경우 브랜드코드 추가 요청할 수 있습니다.

Request Description

항목 항목명 필수여부 Type Description
brandName 브랜드명 Y path  
makerName
제조사명 Y path  
URL만 호출 / Request Body 없음
[GET] https://sa2.esmplus.com/item/v1/catalogs/brands/브랜드명
[GET] https://sa2.esmplus.com/item/v1/catalogs/makers/제조사명

 

Response Description

항목 항목명 Type Description
brandNo 브랜드코드 int 조회한 브랜드/제조사에 매칭되는 브랜드코드
brandNo or productBrandNo를 상품 등록/수정시 입력
brandName 브랜드명 string  
makerNo 제조사코드 int  
makerName 제조사명 string  
productBrandNo 상세브랜드코드 int  
productBrandName 상세브랜드명 string  
resultCode 결과코드 int 실패
message 메시지 string 성공 or 실패사유

JSON_Success

{
  "brands": [
    {
      "brandNo": 0,
      "brandName": "string",
      "makerNo": 0,
      "makerName": "string",
      "productBrandNo": 0,
      "productBrandName": "string"
    }
  ]
}

JSON_Fail

{
   "resultCode": 0,
   "message": "string",
   "data": null
}

Sample Code_Success

{
    "brands": [
        {
            "brandNo": 128097,
            "brandName": "아디다스피트니스",
            "makerNo": 14555,
            "makerName": "아디다스",
            "productBrandNo": 0,
            "productBrandName": null
        }
    ]
}

Error Code

결과코드 메시지 원인
1000 {브랜드명} 브랜드 정보가 존재하지 않습니다 매칭되지 않는 브랜드명 호출했을 경우