# 브랜드 관리

## 브랜드 다국어 저장

> \## 기능설명\
> \* 브랜드 다국어 정보를 저장/수정합니다.\
> \---\
> \## 상세설명\
> \* 브랜드 다국어 정보를 저장/수정합니다.\
> \* 필수값 미입력시 오류를 반환합니다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"BrandMgmtApiLangRequest":{"type":"object","description":"브랜드관리 API 다국어 Request","properties":{"brandNo":{"type":"string","description":"브랜드 번호"},"brandNm":{"type":"string","description":"브랜드명"},"schKwdNm":{"type":"string","description":"검색 키워드"},"brandDescCmt":{"type":"string","description":"브랜드설명내용"}}},"ResponseString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/brandMgmtApi/saveMultiLanguageBrandInfo":{"post":{"tags":["브랜드 관리"],"summary":"브랜드 다국어 저장","description":"## 기능설명\n* 브랜드 다국어 정보를 저장/수정합니다.\n---\n## 상세설명\n* 브랜드 다국어 정보를 저장/수정합니다.\n* 필수값 미입력시 오류를 반환합니다.\n","operationId":"saveMultiLanguageBrandInfo","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BrandMgmtApiLangRequest"}}},"required":true},"responses":{"200":{"description":"브랜드 다국어 목록 저장 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"브랜드 다국어 목록 저장 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 브랜드 정보 저장

> \## 기능설명\
> \* 브랜드 상세 정보를 저장/수정합니다.\
> \---\
> \## 상세설명\
> \* 브랜드 상세정보를 등록 또는 수정/저장합니다.\
> \* 필수값 미입력시 오류를 반환합니다.\
> \* 브랜드 번호가 없는 경우 새 브랜드로 등록됩니다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"BrandMgmtApiSaveRequest":{"type":"object","description":"브랜드관리 API 저장 Request","properties":{"brandNo":{"type":"string","description":"브랜드 번호"},"useYn":{"type":"string","description":"사용여부"},"brandImgPathNm":{"type":"string","description":"브랜드 이미지 경로명"},"brandImgFileNm":{"type":"string","description":"브랜드 이미지 파일명"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명내용"},"schKwdNm":{"type":"string","description":"검색 키워드"}}},"ResponseString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/brandMgmtApi/saveBrandInfo":{"post":{"tags":["브랜드 관리"],"summary":"브랜드 정보 저장","description":"## 기능설명\n* 브랜드 상세 정보를 저장/수정합니다.\n---\n## 상세설명\n* 브랜드 상세정보를 등록 또는 수정/저장합니다.\n* 필수값 미입력시 오류를 반환합니다.\n* 브랜드 번호가 없는 경우 새 브랜드로 등록됩니다.\n","operationId":"saveBrandInfo","parameters":[{"name":"brandLogoFile","in":"query","required":true,"schema":{"type":"string","format":"binary"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"brandInfo":{"$ref":"#/components/schemas/BrandMgmtApiSaveRequest"}},"required":["brandInfo"]}}}},"responses":{"200":{"description":"브랜드 정보 저장 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"브랜드 정보 저장 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 브랜드 정보 삭제

> \## 기능설명\
> \* 삭제 요청한 브랜드의 정보를 삭제합니다.\
> \---\
> \## 상세설명\
> \* 브랜드 정보를 삭제합니다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"BrandMgmtApiRequest":{"type":"object","description":"브랜드관리 API Request","properties":{"brandNo":{"type":"string","description":"브랜드 번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명내용"},"schKwdNm":{"type":"string","description":"검색 키워드"},"useYn":{"type":"string","description":"사용여부"},"brandNoList":{"type":"array","items":{"type":"string"}}}},"ResponseString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/brandMgmtApi/deleteBrandInfo":{"post":{"tags":["브랜드 관리"],"summary":"브랜드 정보 삭제","description":"## 기능설명\n* 삭제 요청한 브랜드의 정보를 삭제합니다.\n---\n## 상세설명\n* 브랜드 정보를 삭제합니다.\n","operationId":"deleteBrandInfo","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BrandMgmtApiRequest"}}},"required":true},"responses":{"200":{"description":"브랜드 정보 삭제 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"브랜드 정보 삭제 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}},"deprecated":true}}}}
```

## 브랜드 다국어 목록 조회

> \## 기능설명\
> \* 브랜드의 다국어 정보 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 브랜드의 다국어 정보 목록을 조회합니다.\
> \* 다국어 정보는 모든 언어의 정보를 리스트로 반환합니다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"BrandMgmtApiRequest":{"type":"object","description":"브랜드관리 API Request","properties":{"brandNo":{"type":"string","description":"브랜드 번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명내용"},"schKwdNm":{"type":"string","description":"검색 키워드"},"useYn":{"type":"string","description":"사용여부"},"brandNoList":{"type":"array","items":{"type":"string"}}}},"ResponseBrandMultiLangInfo":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"$ref":"#/components/schemas/BrandMultiLangInfo","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"BrandMultiLangInfo":{"type":"object","description":"다국어 브랜드 정보","properties":{"originBrandInfo":{"$ref":"#/components/schemas/BrandMgmtApiResponse"},"multiBrandInfo":{"$ref":"#/components/schemas/BrandMgmtApiResponse"}}},"BrandMgmtApiResponse":{"type":"object","description":"브랜드관리 API Response","properties":{"useYn":{"type":"string","description":"사용여부"},"brandNo":{"type":"string","description":"브랜드번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명"},"schKwdNm":{"type":"string","description":"검색키워드"},"brandImgPathNm":{"type":"string","description":"브랜드 로고 이미지 파일 경로"},"brandImgFileNm":{"type":"string","description":"브랜드 로고 이미지 파일 이름"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/goods/brandMgmt/getMultiLanguageBrandInfo":{"get":{"tags":["브랜드 관리"],"summary":"브랜드 다국어 목록 조회","description":"## 기능설명\n* 브랜드의 다국어 정보 목록을 조회합니다.\n---\n## 상세설명\n* 브랜드의 다국어 정보 목록을 조회합니다.\n* 다국어 정보는 모든 언어의 정보를 리스트로 반환합니다.\n","operationId":"getMultiLanguageBrandInfoList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BrandMgmtApiRequest"}}],"responses":{"200":{"description":"브랜드 다국어 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseBrandMultiLangInfo"}}}},"900":{"description":"브랜드 다국어 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 브랜드 다국어 목록 조회

> \## 기능설명\
> \* 브랜드의 다국어 정보 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 브랜드의 다국어 정보 목록을 조회합니다.\
> \* 다국어 정보는 모든 언어의 정보를 리스트로 반환합니다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"BrandMgmtApiRequest":{"type":"object","description":"브랜드관리 API Request","properties":{"brandNo":{"type":"string","description":"브랜드 번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명내용"},"schKwdNm":{"type":"string","description":"검색 키워드"},"useYn":{"type":"string","description":"사용여부"},"brandNoList":{"type":"array","items":{"type":"string"}}}},"ResponseListBrandMgmtApiResponse":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"array","description":"payload","items":{"$ref":"#/components/schemas/BrandMgmtApiResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"BrandMgmtApiResponse":{"type":"object","description":"브랜드관리 API Response","properties":{"useYn":{"type":"string","description":"사용여부"},"brandNo":{"type":"string","description":"브랜드번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명"},"schKwdNm":{"type":"string","description":"검색키워드"},"brandImgPathNm":{"type":"string","description":"브랜드 로고 이미지 파일 경로"},"brandImgFileNm":{"type":"string","description":"브랜드 로고 이미지 파일 이름"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/brandMgmtApi/getMultiLanguageBrandInfoList":{"get":{"tags":["브랜드 관리"],"summary":"브랜드 다국어 목록 조회","description":"## 기능설명\n* 브랜드의 다국어 정보 목록을 조회합니다.\n---\n## 상세설명\n* 브랜드의 다국어 정보 목록을 조회합니다.\n* 다국어 정보는 모든 언어의 정보를 리스트로 반환합니다.\n","operationId":"getMultiLanguageBrandInfoList_1","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BrandMgmtApiRequest"}}],"responses":{"200":{"description":"브랜드 다국어 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListBrandMgmtApiResponse"}}}},"900":{"description":"브랜드 다국어 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}},"deprecated":true}}}}
```

## 브랜드 목록 조회

> \## 기능설명\
> \* 브랜드 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 브랜드 목록을 조회합니다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"BrandMgmtApiRequest":{"type":"object","description":"브랜드관리 API Request","properties":{"brandNo":{"type":"string","description":"브랜드 번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명내용"},"schKwdNm":{"type":"string","description":"검색 키워드"},"useYn":{"type":"string","description":"사용여부"},"brandNoList":{"type":"array","items":{"type":"string"}}}},"ResponseListBrandMgmtApiResponse":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"array","description":"payload","items":{"$ref":"#/components/schemas/BrandMgmtApiResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"BrandMgmtApiResponse":{"type":"object","description":"브랜드관리 API Response","properties":{"useYn":{"type":"string","description":"사용여부"},"brandNo":{"type":"string","description":"브랜드번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명"},"schKwdNm":{"type":"string","description":"검색키워드"},"brandImgPathNm":{"type":"string","description":"브랜드 로고 이미지 파일 경로"},"brandImgFileNm":{"type":"string","description":"브랜드 로고 이미지 파일 이름"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/brandMgmtApi/getBrandList":{"get":{"tags":["브랜드 관리"],"summary":"브랜드 목록 조회","description":"## 기능설명\n* 브랜드 목록을 조회합니다.\n---\n## 상세설명\n* 브랜드 목록을 조회합니다.\n","operationId":"getBrandList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BrandMgmtApiRequest"}}],"responses":{"200":{"description":"브랜드 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListBrandMgmtApiResponse"}}}},"900":{"description":"브랜드 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 브랜드 목록 검색

> \## 기능설명\
> \* 브랜드 목록을 검색한다\
> \---\
> \## 상세설명\
> \* 검색 조건에 따라 브랜드 목록을 조회합니다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"BrandMgmtApiRequest":{"type":"object","description":"브랜드관리 API Request","properties":{"brandNo":{"type":"string","description":"브랜드 번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명내용"},"schKwdNm":{"type":"string","description":"검색 키워드"},"useYn":{"type":"string","description":"사용여부"},"brandNoList":{"type":"array","items":{"type":"string"}}}},"ResponseRealGridListResponseBrandMgmtApiResponse":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"$ref":"#/components/schemas/RealGridListResponseBrandMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseBrandMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/BrandMgmtApiResponse"}}}},"BrandMgmtApiResponse":{"type":"object","description":"브랜드관리 API Response","properties":{"useYn":{"type":"string","description":"사용여부"},"brandNo":{"type":"string","description":"브랜드번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명"},"schKwdNm":{"type":"string","description":"검색키워드"},"brandImgPathNm":{"type":"string","description":"브랜드 로고 이미지 파일 경로"},"brandImgFileNm":{"type":"string","description":"브랜드 로고 이미지 파일 이름"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/brandMgmtApi/getBrandListSearch":{"get":{"tags":["브랜드 관리"],"summary":"브랜드 목록 검색","description":"## 기능설명\n* 브랜드 목록을 검색한다\n---\n## 상세설명\n* 검색 조건에 따라 브랜드 목록을 조회합니다.\n","operationId":"getBrandListSearch","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BrandMgmtApiRequest"}}],"responses":{"200":{"description":"브랜드 목록 검색 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseBrandMgmtApiResponse"}}}},"900":{"description":"브랜드 목록 검색 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 브랜드 정보 조회

> \## 기능설명\
> \* 브랜드 상세 정보를 조회합니다.\
> \---\
> \## 상세설명\
> \* 브랜드 상세 정보를 조회합니다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"BrandMgmtApiRequest":{"type":"object","description":"브랜드관리 API Request","properties":{"brandNo":{"type":"string","description":"브랜드 번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명내용"},"schKwdNm":{"type":"string","description":"검색 키워드"},"useYn":{"type":"string","description":"사용여부"},"brandNoList":{"type":"array","items":{"type":"string"}}}},"ResponseBrandMgmtApiResponse":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"$ref":"#/components/schemas/BrandMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"BrandMgmtApiResponse":{"type":"object","description":"브랜드관리 API Response","properties":{"useYn":{"type":"string","description":"사용여부"},"brandNo":{"type":"string","description":"브랜드번호"},"brandNm":{"type":"string","description":"브랜드명"},"brandDescCmt":{"type":"string","description":"브랜드설명"},"schKwdNm":{"type":"string","description":"검색키워드"},"brandImgPathNm":{"type":"string","description":"브랜드 로고 이미지 파일 경로"},"brandImgFileNm":{"type":"string","description":"브랜드 로고 이미지 파일 이름"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/brandMgmtApi/getBrandInfo":{"get":{"tags":["브랜드 관리"],"summary":"브랜드 정보 조회","description":"## 기능설명\n* 브랜드 상세 정보를 조회합니다.\n---\n## 상세설명\n* 브랜드 상세 정보를 조회합니다.\n","operationId":"getBrandInfo","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BrandMgmtApiRequest"}}],"responses":{"200":{"description":"브랜드 정보 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseBrandMgmtApiResponse"}}}},"900":{"description":"브랜드 정보 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tech.x2bee.com/api/back-office-api/goods-bo-api/undefined-20.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
