> For the complete documentation index, see [llms.txt](https://tech.x2bee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tech.x2bee.com/api/back-office-api/display-bo-api/undefined.md).

# 표준카테고리관리

## 표준 카테고리 기본 정보 조회

> \## 기능설명\
> \* 표준 카테고리 번호로 해당 표준 카테고리의 기본 정보를 조회한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리의 기본 정보 영역\
> \* 표준 카테고리 관리 페이지에서 표준 카테고리를 선택했을 때 해당 표준 카테고리의 기본 정보를 조회한다.<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":{"PrStdCtg":{"type":"object","description":"표준 카테고리","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"stdCtgNm":{"type":"string","description":"표준카테고리명"},"leafCtgYn":{"type":"string","description":"리프카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"uprStdCtgNo":{"type":"string","description":"상위표준카테고리번호"},"stdLrgCtgNo":{"type":"string","description":"표준대카테고리번호"},"stdMidCtgNo":{"type":"string","description":"표준중카테고리번호"},"stdSmlCtgNo":{"type":"string","description":"표준소카테고리번호"},"stdThnCtgNo":{"type":"string","description":"표준세카테고리번호"},"mdId":{"type":"string","description":"MD아이디"},"safeCertiNeedYn":{"type":"string","description":"안전인증필요여부"},"goodsNotiLisartCd":{"type":"string","description":"상품고시품목코드"},"hsCd":{"type":"string","description":"품목분류코드"},"mrgnRate":{"type":"number","description":"카테고리 마진율"},"mdNm":{"type":"string","description":"MD이름","readOnly":true},"goodsNotiLisartCdNm":{"type":"string","description":"상품고시품목코드명","readOnly":true},"leafCtgYnChangePossible":{"type":"string","description":"리프표준분류여부 변경 가능여부","readOnly":true},"uprStdCtgNm":{"type":"string","description":"상위표준카테고리명","readOnly":true},"hierarchyText":{"type":"string","description":"계층구조 텍스트","readOnly":true},"realGridCUD":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtg","description":"CUD 목록"}}},"RealGridCUDRequestPrStdCtg":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory/{stdCtgNo}":{"get":{"tags":["표준카테고리관리"],"summary":"표준 카테고리 기본 정보 조회","description":"## 기능설명\n* 표준 카테고리 번호로 해당 표준 카테고리의 기본 정보를 조회한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리의 기본 정보 영역\n* 표준 카테고리 관리 페이지에서 표준 카테고리를 선택했을 때 해당 표준 카테고리의 기본 정보를 조회한다.\n","operationId":"getStandardCategoryMgmtInfo","parameters":[{"name":"stdCtgNo","in":"query","description":"표준카테고리번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"표준 카테고리 기본 정보 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrStdCtg"}}}},"900":{"description":"표준 카테고리 기본 정보 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 표준 카테고리 기본 정보 수정

> \## 기능설명\
> \* 표준 카테고리 기본 정보를 수정한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 기본 정보 영역\
> \* 표준 카테고리 기본 정보에서 표준카테고리명, 사용여부, 정렬순서, 리프 표준 카테고리 여부, 담당MD, 상품고시품목, 안전인증필여부를 수정한다.\
> &#x20;   \* BO에서 해당 표준 카테고리가 리프 표준 카테고리 여부를 수정할 수 있거나, 리프 표준 카테고리일 경우에만 표준 카테고리 기본 정보 수정이 가능하다.\
> \* 입력 파라미터( \_\_\*\_\_: 필수)\
> &#x20;   \- \_\_stdCtgNo \*, stdCtgNm \*, leafCtgYn \*, useYn \*, sortSeq \*\_\_, mdId, safeCertiNeedYn, goodsNotiLisartCd, hsCd<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":{"PrStdCtg":{"type":"object","description":"표준 카테고리","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"stdCtgNm":{"type":"string","description":"표준카테고리명"},"leafCtgYn":{"type":"string","description":"리프카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"uprStdCtgNo":{"type":"string","description":"상위표준카테고리번호"},"stdLrgCtgNo":{"type":"string","description":"표준대카테고리번호"},"stdMidCtgNo":{"type":"string","description":"표준중카테고리번호"},"stdSmlCtgNo":{"type":"string","description":"표준소카테고리번호"},"stdThnCtgNo":{"type":"string","description":"표준세카테고리번호"},"mdId":{"type":"string","description":"MD아이디"},"safeCertiNeedYn":{"type":"string","description":"안전인증필요여부"},"goodsNotiLisartCd":{"type":"string","description":"상품고시품목코드"},"hsCd":{"type":"string","description":"품목분류코드"},"mrgnRate":{"type":"number","description":"카테고리 마진율"},"mdNm":{"type":"string","description":"MD이름","readOnly":true},"goodsNotiLisartCdNm":{"type":"string","description":"상품고시품목코드명","readOnly":true},"leafCtgYnChangePossible":{"type":"string","description":"리프표준분류여부 변경 가능여부","readOnly":true},"uprStdCtgNm":{"type":"string","description":"상위표준카테고리명","readOnly":true},"hierarchyText":{"type":"string","description":"계층구조 텍스트","readOnly":true},"realGridCUD":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtg","description":"CUD 목록"}}},"RealGridCUDRequestPrStdCtg":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory/{stdCtgNo}":{"put":{"tags":["표준카테고리관리"],"summary":"표준 카테고리 기본 정보 수정","description":"## 기능설명\n* 표준 카테고리 기본 정보를 수정한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 기본 정보 영역\n* 표준 카테고리 기본 정보에서 표준카테고리명, 사용여부, 정렬순서, 리프 표준 카테고리 여부, 담당MD, 상품고시품목, 안전인증필여부를 수정한다.\n    * BO에서 해당 표준 카테고리가 리프 표준 카테고리 여부를 수정할 수 있거나, 리프 표준 카테고리일 경우에만 표준 카테고리 기본 정보 수정이 가능하다.\n* 입력 파라미터( __*__: 필수)\n    - __stdCtgNo *, stdCtgNm *, leafCtgYn *, useYn *, sortSeq *__, mdId, safeCertiNeedYn, goodsNotiLisartCd, hsCd\n","operationId":"modifyStandardCategoryMgmtInfo","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrStdCtg"}}},"required":true},"responses":{"200":{"description":"표준 카테고리 기본 정보 수정 성공","content":{"*/*":{"schema":{"type":"string"}}}},"900":{"description":"표준 카테고리 기본 정보 수정 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 전체 표준 카테고리 목록 조회

> \## 기능설명\
> \* 전체 표준 카테고리 목록을 조회한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 목록 Tree 영역\
> \* 표준 카테고리 관리 페이지에서 Tree 구조로 카테고리를 노출하기 위해 전체 표준 카테고리 목록을 조회한다.\
> \* 상위 표준 카테고리 번호와 전시순서 오름차순으로 조회한다.<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":{"PrStdCtg":{"type":"object","description":"표준 카테고리","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"stdCtgNm":{"type":"string","description":"표준카테고리명"},"leafCtgYn":{"type":"string","description":"리프카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"uprStdCtgNo":{"type":"string","description":"상위표준카테고리번호"},"stdLrgCtgNo":{"type":"string","description":"표준대카테고리번호"},"stdMidCtgNo":{"type":"string","description":"표준중카테고리번호"},"stdSmlCtgNo":{"type":"string","description":"표준소카테고리번호"},"stdThnCtgNo":{"type":"string","description":"표준세카테고리번호"},"mdId":{"type":"string","description":"MD아이디"},"safeCertiNeedYn":{"type":"string","description":"안전인증필요여부"},"goodsNotiLisartCd":{"type":"string","description":"상품고시품목코드"},"hsCd":{"type":"string","description":"품목분류코드"},"mrgnRate":{"type":"number","description":"카테고리 마진율"},"mdNm":{"type":"string","description":"MD이름","readOnly":true},"goodsNotiLisartCdNm":{"type":"string","description":"상품고시품목코드명","readOnly":true},"leafCtgYnChangePossible":{"type":"string","description":"리프표준분류여부 변경 가능여부","readOnly":true},"uprStdCtgNm":{"type":"string","description":"상위표준카테고리명","readOnly":true},"hierarchyText":{"type":"string","description":"계층구조 텍스트","readOnly":true},"realGridCUD":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtg","description":"CUD 목록"}}},"RealGridCUDRequestPrStdCtg":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory":{"get":{"tags":["표준카테고리관리"],"summary":"전체 표준 카테고리 목록 조회","description":"## 기능설명\n* 전체 표준 카테고리 목록을 조회한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 목록 Tree 영역\n* 표준 카테고리 관리 페이지에서 Tree 구조로 카테고리를 노출하기 위해 전체 표준 카테고리 목록을 조회한다.\n* 상위 표준 카테고리 번호와 전시순서 오름차순으로 조회한다.\n","operationId":"getStandardCategoryMgmt","responses":{"200":{"description":"전체 표준 카테고리 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrStdCtg"}}}},"900":{"description":"전체 표준 카테고리 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 하위 표준 카테고리 목록 저장

> \## 기능설명\
> \* 하위 표준 카테고리 목록을 저장한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 하위 표준 카테고리 목록 영역\
> \* 하위 표준 카테고리 목록 그리드에서 하위 표준 카테고리를 추가, 수정, 삭제한다.\
> \* 입력 파라미터( \_\_\*\_\_: 필수)\
> &#x20;   \- create: \_\_stdCtgNo \*, stdCtgNm \*, leafCtgYn \*, useYn \*, sortSeq \*, uprStdCtgNo \*\_\_, stdLrgCtgNo, stdMidCtgNo, stdSmlCtgNo, stdThnCtgNo\
> &#x20;   \- update: \_\_stdCtgNo \*, stdCtgNm \*, leafCtgYn \*, useYn \*, sortSeq \*\_\_\
> &#x20;   \- delete: \_\_stdCtgNo \*\_\_<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":{"PrStdCtg":{"type":"object","description":"표준 카테고리","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"stdCtgNm":{"type":"string","description":"표준카테고리명"},"leafCtgYn":{"type":"string","description":"리프카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"uprStdCtgNo":{"type":"string","description":"상위표준카테고리번호"},"stdLrgCtgNo":{"type":"string","description":"표준대카테고리번호"},"stdMidCtgNo":{"type":"string","description":"표준중카테고리번호"},"stdSmlCtgNo":{"type":"string","description":"표준소카테고리번호"},"stdThnCtgNo":{"type":"string","description":"표준세카테고리번호"},"mdId":{"type":"string","description":"MD아이디"},"safeCertiNeedYn":{"type":"string","description":"안전인증필요여부"},"goodsNotiLisartCd":{"type":"string","description":"상품고시품목코드"},"hsCd":{"type":"string","description":"품목분류코드"},"mrgnRate":{"type":"number","description":"카테고리 마진율"},"mdNm":{"type":"string","description":"MD이름","readOnly":true},"goodsNotiLisartCdNm":{"type":"string","description":"상품고시품목코드명","readOnly":true},"leafCtgYnChangePossible":{"type":"string","description":"리프표준분류여부 변경 가능여부","readOnly":true},"uprStdCtgNm":{"type":"string","description":"상위표준카테고리명","readOnly":true},"hierarchyText":{"type":"string","description":"계층구조 텍스트","readOnly":true},"realGridCUD":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtg","description":"CUD 목록"}}},"RealGridCUDRequestPrStdCtg":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory":{"post":{"tags":["표준카테고리관리"],"summary":"하위 표준 카테고리 목록 저장","description":"## 기능설명\n* 하위 표준 카테고리 목록을 저장한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 하위 표준 카테고리 목록 영역\n* 하위 표준 카테고리 목록 그리드에서 하위 표준 카테고리를 추가, 수정, 삭제한다.\n* 입력 파라미터( __*__: 필수)\n    - create: __stdCtgNo *, stdCtgNm *, leafCtgYn *, useYn *, sortSeq *, uprStdCtgNo *__, stdLrgCtgNo, stdMidCtgNo, stdSmlCtgNo, stdThnCtgNo\n    - update: __stdCtgNo *, stdCtgNm *, leafCtgYn *, useYn *, sortSeq *__\n    - delete: __stdCtgNo *__\n","operationId":"saveStandardCategoryChild","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrStdCtg"}}},"required":true},"responses":{"200":{"description":"하위 표준 카테고리 목록 저장 성공","content":{"*/*":{"schema":{"type":"string"}}}},"900":{"description":"하위 표준 카테고리 목록 저장 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 표준 카테고리 상품 속성 목록 조회

> \## 기능설명\
> \* 표준 카테고리 번호로 해당 표준 카테고리의 표준 카테고리 상품 속성 목록을 조회한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 상품 속성 목록 그리드 영역\
> \* 표준 카테고리 관리 페이지에서 표준 카테고리를 선택했을 때 그리드에 노출되는 해당 표준 카테고리의 표준 카테고리 상품 속성을 조회한다.\
> \* 전시 순서, 수정일자에 따라 오름차순으로 정렬되어 조회한다.\
> \---\
> \## 수정번호\
> \* \`\`\`Release v1.05\_231204\`\`\`: 표준 카테고리 상품 속성 최초 개발<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":{"PrStdCtg":{"type":"object","description":"표준 카테고리","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"stdCtgNm":{"type":"string","description":"표준카테고리명"},"leafCtgYn":{"type":"string","description":"리프카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"uprStdCtgNo":{"type":"string","description":"상위표준카테고리번호"},"stdLrgCtgNo":{"type":"string","description":"표준대카테고리번호"},"stdMidCtgNo":{"type":"string","description":"표준중카테고리번호"},"stdSmlCtgNo":{"type":"string","description":"표준소카테고리번호"},"stdThnCtgNo":{"type":"string","description":"표준세카테고리번호"},"mdId":{"type":"string","description":"MD아이디"},"safeCertiNeedYn":{"type":"string","description":"안전인증필요여부"},"goodsNotiLisartCd":{"type":"string","description":"상품고시품목코드"},"hsCd":{"type":"string","description":"품목분류코드"},"mrgnRate":{"type":"number","description":"카테고리 마진율"},"mdNm":{"type":"string","description":"MD이름","readOnly":true},"goodsNotiLisartCdNm":{"type":"string","description":"상품고시품목코드명","readOnly":true},"leafCtgYnChangePossible":{"type":"string","description":"리프표준분류여부 변경 가능여부","readOnly":true},"uprStdCtgNm":{"type":"string","description":"상위표준카테고리명","readOnly":true},"hierarchyText":{"type":"string","description":"계층구조 텍스트","readOnly":true},"realGridCUD":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtg","description":"CUD 목록"}}},"RealGridCUDRequestPrStdCtg":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory/goodsAttr/{stdCtgNo}":{"get":{"tags":["표준카테고리관리"],"summary":"표준 카테고리 상품 속성 목록 조회","description":"## 기능설명\n* 표준 카테고리 번호로 해당 표준 카테고리의 표준 카테고리 상품 속성 목록을 조회한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 상품 속성 목록 그리드 영역\n* 표준 카테고리 관리 페이지에서 표준 카테고리를 선택했을 때 그리드에 노출되는 해당 표준 카테고리의 표준 카테고리 상품 속성을 조회한다.\n* 전시 순서, 수정일자에 따라 오름차순으로 정렬되어 조회한다.\n---\n## 수정번호\n* ```Release v1.05_231204```: 표준 카테고리 상품 속성 최초 개발\n","operationId":"getStandardCategoryGoodsAttrList","parameters":[{"name":"stdCtgNo","in":"query","description":"표준카테고리번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"표준 카테고리 상품 속성 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrStdCtg"}}}},"900":{"description":"표준 카테고리 상품 속성 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
````

## 표준 카테고리 상품 속성 목록 저장

> \## 기능설명\
> \* 표준 카테고리 상품 속성 목록을 저장한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 상품 속성 목록 영역\
> \* 표준 카테고리 상품 속성 목록 그리드에서 하위 표준 카테고리를 추가, 수정, 삭제한다.\
> \* 입력 파라미터( \_\_\*\_\_: 필수)\
> &#x20;   \- create: \_\_stdCtgNo \*, attCd \*, dispSeq \*, useYn \*\_\_\
> &#x20;   \- update: \_\_stdCtgNo \*, attCd \*, dispSeq \*, useYn \*\_\_\
> &#x20;   \- delete: \_\_stdCtgNo \*, attCd \*\_\_\
> \---\
> \## 수정번호\
> \* \`\`\`Release v1.05\_231204\`\`\`: 표준 카테고리 상품 속성 최초 개발<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":{"RealGridCUDRequestPrStdCtgGoodsAttInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgGoodsAttInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgGoodsAttInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgGoodsAttInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgGoodsAttInfo"}}}},"PrStdCtgGoodsAttInfo":{"type":"object","description":"표준카테고리상품속성정보","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"attCd":{"type":"string","description":"속성코드"},"dispSeq":{"type":"integer","format":"int32","description":"전시순서"},"useYn":{"type":"string","description":"사용여부"},"attCdExpYn":{"type":"string","description":"속성코드노출여부"},"attValTypCd":{"type":"string","description":"속성값유형코드(PR043) 10:text 20:textarea 30:editor"},"attNm":{"type":"string","description":"속성명"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory/goodsAttr/{stdCtgNo}":{"post":{"tags":["표준카테고리관리"],"summary":"표준 카테고리 상품 속성 목록 저장","description":"## 기능설명\n* 표준 카테고리 상품 속성 목록을 저장한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 상품 속성 목록 영역\n* 표준 카테고리 상품 속성 목록 그리드에서 하위 표준 카테고리를 추가, 수정, 삭제한다.\n* 입력 파라미터( __*__: 필수)\n    - create: __stdCtgNo *, attCd *, dispSeq *, useYn *__\n    - update: __stdCtgNo *, attCd *, dispSeq *, useYn *__\n    - delete: __stdCtgNo *, attCd *__\n---\n## 수정번호\n* ```Release v1.05_231204```: 표준 카테고리 상품 속성 최초 개발\n","operationId":"saveStandardCategoryGoodsAttr","parameters":[{"name":"stdCtgNo","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtgGoodsAttInfo"}}},"required":true},"responses":{"200":{"description":"표준 카테고리 상품 속성 목록 저장 성공","content":{"*/*":{"schema":{"type":"string"}}}},"900":{"description":"표준 카테고리 상품 속성 목록 저장 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
````

## 표준 카테고리 삭제 가능 목록 확인

> \## 기능설명\
> \* 표준 카테고리 번호 목록으로 표준 카테고리 삭제 가능 여부를 확인한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 하위 표준 카테고리 목록 그리드 영역\
> \* 하위 표준 카테고리 목록 그리드에서 표준 카테고리를 삭제할 때 삭제 가능 여부를 확인한다.\
> \* 아래 1, 2, 3 모두 해당 사항이 없을 시에만 표준 카테고리 삭제 가능\
> &#x20;   1\) 하위 표준 카테고리 여부\
> &#x20;   2\) 연결된 표준/전시 카테고리 여부\
> &#x20;   3\) 등록된 상품 여부<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":{"PrStdCtgSearch":{"type":"object","description":"표준 카테고리 조회","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"useYn":{"type":"string","description":"사용여부"},"rangeFrom":{"type":"number","format":"double","description":"마진율 범위 from"},"rangeTo":{"type":"number","format":"double","description":"마진율 범위 to"},"entrNo":{"type":"string","description":"협력사번호"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory/getCheckStandardCategoryListDelete":{"post":{"tags":["표준카테고리관리"],"summary":"표준 카테고리 삭제 가능 목록 확인","description":"## 기능설명\n* 표준 카테고리 번호 목록으로 표준 카테고리 삭제 가능 여부를 확인한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 하위 표준 카테고리 목록 그리드 영역\n* 하위 표준 카테고리 목록 그리드에서 표준 카테고리를 삭제할 때 삭제 가능 여부를 확인한다.\n* 아래 1, 2, 3 모두 해당 사항이 없을 시에만 표준 카테고리 삭제 가능\n    1) 하위 표준 카테고리 여부\n    2) 연결된 표준/전시 카테고리 여부\n    3) 등록된 상품 여부\n","operationId":"getCheckStandardCategoryListDelete","requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgSearch"}}}},"required":true},"responses":{"200":{"description":"표준 카테고리 목록 삭제 가능 여부 확인 성공","content":{"*/*":{"schema":{"type":"boolean"}}}},"900":{"description":"표준 카테고리 목록 삭제 가능 여부 확인 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 카테고리 마진율 정보 수정

> \## 기능설명\
> \* 카테고리 마진율 정보를 수정한다.\
> \---\
> \## 상세 설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 카테고리 마진율 관리 > 그리드\
> \* 리프 카테고리의 마진율을 수정한다.<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":{"RealGridCUDRequestPrStdCtg":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}}}},"PrStdCtg":{"type":"object","description":"표준 카테고리","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"stdCtgNm":{"type":"string","description":"표준카테고리명"},"leafCtgYn":{"type":"string","description":"리프카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"uprStdCtgNo":{"type":"string","description":"상위표준카테고리번호"},"stdLrgCtgNo":{"type":"string","description":"표준대카테고리번호"},"stdMidCtgNo":{"type":"string","description":"표준중카테고리번호"},"stdSmlCtgNo":{"type":"string","description":"표준소카테고리번호"},"stdThnCtgNo":{"type":"string","description":"표준세카테고리번호"},"mdId":{"type":"string","description":"MD아이디"},"safeCertiNeedYn":{"type":"string","description":"안전인증필요여부"},"goodsNotiLisartCd":{"type":"string","description":"상품고시품목코드"},"hsCd":{"type":"string","description":"품목분류코드"},"mrgnRate":{"type":"number","description":"카테고리 마진율"},"mdNm":{"type":"string","description":"MD이름","readOnly":true},"goodsNotiLisartCdNm":{"type":"string","description":"상품고시품목코드명","readOnly":true},"leafCtgYnChangePossible":{"type":"string","description":"리프표준분류여부 변경 가능여부","readOnly":true},"uprStdCtgNm":{"type":"string","description":"상위표준카테고리명","readOnly":true},"hierarchyText":{"type":"string","description":"계층구조 텍스트","readOnly":true},"realGridCUD":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtg","description":"CUD 목록"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/display/standardCategoryMgmt/saveCategoryMrgnRateList":{"post":{"tags":["표준카테고리관리"],"summary":"카테고리 마진율 정보 수정","description":"## 기능설명\n* 카테고리 마진율 정보를 수정한다.\n---\n## 상세 설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 카테고리 마진율 관리 > 그리드\n* 리프 카테고리의 마진율을 수정한다.\n","operationId":"saveCategoryMrgnRateList","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtg"}}},"required":true},"responses":{"200":{"description":"카테고리 마진율 정보 수정 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrStdCtg"}}}},"900":{"description":"카테고리 마진율 정보 수정 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 속성 정보 목록 조회

> \## 기능설명\
> \* 전체 속성 정보 목록을 조회한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 상품 속성 목록 > 속성 등록 버튼 > 속성 정보 팝업\
> \---\
> \## 수정번호\
> \* \`\`\`Release v1.05\_231204\`\`\`: 표준 카테고리 상품 속성 최초 개발<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":{"PrAttCdInfo":{"type":"object","description":"속성정보","properties":{"attCd":{"type":"string","description":"속성코드"},"attCdExpYn":{"type":"string","description":"속성코드노출여부"},"attValTypCd":{"type":"string","description":"속성값유형코드(PR043) 10:text 20:textarea 30:editor"},"attNm":{"type":"string","description":"속성명"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory/goodsAttr":{"get":{"tags":["표준카테고리관리"],"summary":"속성 정보 목록 조회","description":"## 기능설명\n* 전체 속성 정보 목록을 조회한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 상품 속성 목록 > 속성 등록 버튼 > 속성 정보 팝업\n---\n## 수정번호\n* ```Release v1.05_231204```: 표준 카테고리 상품 속성 최초 개발\n","operationId":"getAttInfoList","responses":{"200":{"description":"전체 속성 정보 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrAttCdInfo"}}}},"900":{"description":"전체 속성 정보 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
````

## 표준 카테고리 상품 목록 조회

> \## 기능설명\
> \* 표준 카테고리 번호로 해당 표준 카테고리의 상품 목록을 조회한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 상품 목록 그리드 영역\
> \* 표준 카테고리 관리 페이지에서 표준 카테고리를 선택했을 때 그리드에 노출되는 해당 표준 카테고리의 상품 목록을 조회한다.\
> \* 상품 번호로 오름차순 정렬한다.<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":{"GoodsInfo":{"type":"object","properties":{"goodsNo":{"type":"string","description":"표준카테고리 상품번호"},"goodsNm":{"type":"string","description":"표준카테고리 상품명"},"saleStatCdNm":{"type":"string","description":"표준카테고리 상품 판매상태"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory/goods/{stdCtgNo}":{"get":{"tags":["표준카테고리관리"],"summary":"표준 카테고리 상품 목록 조회","description":"## 기능설명\n* 표준 카테고리 번호로 해당 표준 카테고리의 상품 목록을 조회한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 표준 카테고리 상품 목록 그리드 영역\n* 표준 카테고리 관리 페이지에서 표준 카테고리를 선택했을 때 그리드에 노출되는 해당 표준 카테고리의 상품 목록을 조회한다.\n* 상품 번호로 오름차순 정렬한다.\n","operationId":"getStandardCategoryMgmtGoodsList","parameters":[{"name":"rowsPerPage","in":"query","description":"페이지 당 row","required":true,"schema":{"type":"string"}},{"name":"pageIdx","in":"query","description":"현재 페이지","required":true,"schema":{"type":"string"}},{"name":"stdCtgNo","in":"path","description":"표준카테고리번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"표준 카테고리 상품 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/GoodsInfo"}}}},"900":{"description":"표준 카테고리 상품 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 표준 카테고리 삭제 가능 여부 확인

> \## 기능설명\
> \* 표준 카테고리 번호로 표준 카테고리 삭제 가능 여부를 확인한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 하위 표준 카테고리 목록 그리드 영역\
> \* 하위 표준 카테고리 목록 그리드에서 표준 카테고리를 삭제할 때 삭제 가능 여부를 확인한다.\
> \* 아래 1, 2, 3 모두 해당 사항이 없을 시에만 표준 카테고리 삭제 가능\
> &#x20;   1\) 하위 표준 카테고리 여부\
> &#x20;   2\) 등록된 상품 여부\
> &#x20;   3\) 연결된 전시 카테고리 여부<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":{"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory/getCheckStandardCategoryDelete":{"get":{"tags":["표준카테고리관리"],"summary":"표준 카테고리 삭제 가능 여부 확인","description":"## 기능설명\n* 표준 카테고리 번호로 표준 카테고리 삭제 가능 여부를 확인한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 하위 표준 카테고리 목록 그리드 영역\n* 하위 표준 카테고리 목록 그리드에서 표준 카테고리를 삭제할 때 삭제 가능 여부를 확인한다.\n* 아래 1, 2, 3 모두 해당 사항이 없을 시에만 표준 카테고리 삭제 가능\n    1) 하위 표준 카테고리 여부\n    2) 등록된 상품 여부\n    3) 연결된 전시 카테고리 여부\n","operationId":"getCheckStandardCategoryDelete","parameters":[{"name":"stdCtgNo","in":"query","description":"표준카테고리번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"표준 카테고리 삭제 가능 여부 확인 성공","content":{"*/*":{"schema":{"type":"boolean"}}}},"900":{"description":"표준 카테고리 삭제 가능 여부 확인 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 하위 표준 카테고리 목록 및 개수 조회

> &#x20;   \## 기능설명\
> &#x20;   \* 표준 카테고리 번호로 해당 표준 카테고리의 하위 표준 카테고리 목록과 개수를 조회한다.\
> &#x20;   \---\
> &#x20;   \## 상세설명\
> &#x20;   \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 하위 표준 카테고리 목록 그리드 영역\
> &#x20;   \* 표준 카테고리 관리 페이지에서 표준 카테고리를 선택했을 때 그리드에 노출되는 해당 표준 카테고리의 하위 표준 카테고리를 조회한다.\
> &#x20;   \* 전시 순서에 따라 오름차순으로 정렬되어 조회한다.<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":{"RealGridListResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/standardCategory/children/{stdCtgNo}":{"get":{"tags":["표준카테고리관리"],"summary":"하위 표준 카테고리 목록 및 개수 조회","description":"    ## 기능설명\n    * 표준 카테고리 번호로 해당 표준 카테고리의 하위 표준 카테고리 목록과 개수를 조회한다.\n    ---\n    ## 상세설명\n    * [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 하위 표준 카테고리 목록 그리드 영역\n    * 표준 카테고리 관리 페이지에서 표준 카테고리를 선택했을 때 그리드에 노출되는 해당 표준 카테고리의 하위 표준 카테고리를 조회한다.\n    * 전시 순서에 따라 오름차순으로 정렬되어 조회한다.\n","operationId":"getStandardCategoryMgmtChildList","parameters":[{"name":"rowsPerPage","in":"query","description":"페이지 당 row","required":true,"schema":{"type":"string"}},{"name":"pageIdx","in":"query","description":"현재 페이지","required":true,"schema":{"type":"string"}},{"name":"stdCtgNo","in":"query","description":"표준카테고리번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"하위 표준 카테고리 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RealGridListResponse"}}}},"900":{"description":"하위 표준 카테고리 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 표준 카테고리 마진율 조회

> \## 기능설명\
> \* 표준 카테고리의 마진율을 조회한다.\
> \---\
> \## 상세 설명\
> \* \[BO] 상품 > 상품 관리 > 상품 등록 > 표준카테고리 선택 시 선택한 표준카테고리의 마진율을 조회한다.<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":{"PrStdCtgSearch":{"type":"object","description":"표준 카테고리 조회","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"useYn":{"type":"string","description":"사용여부"},"rangeFrom":{"type":"number","format":"double","description":"마진율 범위 from"},"rangeTo":{"type":"number","format":"double","description":"마진율 범위 to"},"entrNo":{"type":"string","description":"협력사번호"}}},"PrStdCtg":{"type":"object","description":"표준 카테고리","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"stdCtgNm":{"type":"string","description":"표준카테고리명"},"leafCtgYn":{"type":"string","description":"리프카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"uprStdCtgNo":{"type":"string","description":"상위표준카테고리번호"},"stdLrgCtgNo":{"type":"string","description":"표준대카테고리번호"},"stdMidCtgNo":{"type":"string","description":"표준중카테고리번호"},"stdSmlCtgNo":{"type":"string","description":"표준소카테고리번호"},"stdThnCtgNo":{"type":"string","description":"표준세카테고리번호"},"mdId":{"type":"string","description":"MD아이디"},"safeCertiNeedYn":{"type":"string","description":"안전인증필요여부"},"goodsNotiLisartCd":{"type":"string","description":"상품고시품목코드"},"hsCd":{"type":"string","description":"품목분류코드"},"mrgnRate":{"type":"number","description":"카테고리 마진율"},"mdNm":{"type":"string","description":"MD이름","readOnly":true},"goodsNotiLisartCdNm":{"type":"string","description":"상품고시품목코드명","readOnly":true},"leafCtgYnChangePossible":{"type":"string","description":"리프표준분류여부 변경 가능여부","readOnly":true},"uprStdCtgNm":{"type":"string","description":"상위표준카테고리명","readOnly":true},"hierarchyText":{"type":"string","description":"계층구조 텍스트","readOnly":true},"realGridCUD":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtg","description":"CUD 목록"}}},"RealGridCUDRequestPrStdCtg":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/display/standardCategoryMgmt/getCategoryMrgnRate":{"get":{"tags":["표준카테고리관리"],"summary":"표준 카테고리 마진율 조회","description":"## 기능설명\n* 표준 카테고리의 마진율을 조회한다.\n---\n## 상세 설명\n* [BO] 상품 > 상품 관리 > 상품 등록 > 표준카테고리 선택 시 선택한 표준카테고리의 마진율을 조회한다.\n","operationId":"getCategoryMrgnRate","parameters":[{"name":"search","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PrStdCtgSearch"}}],"responses":{"200":{"description":"표준 카테고리 마진율 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrStdCtg"}}}},"900":{"description":"표준 카테고리 마진율 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 카테고리 마진율 관리 목록 조회

> \## 기능설명\
> \* 카테고리 마진율 관리 목록을 조회한다.\
> \---\
> \## 상세설명\
> \* \[BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 카테고리 마진율 관리 탭\
> \* 카테고리 마진율 관리 탭에서 리프 카테고리의 마진율을 관리하기 위한 목록을 조회한다.<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":{"PrStdCtg":{"type":"object","description":"표준 카테고리","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"stdCtgNm":{"type":"string","description":"표준카테고리명"},"leafCtgYn":{"type":"string","description":"리프카테고리여부"},"useYn":{"type":"string","description":"사용여부"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"uprStdCtgNo":{"type":"string","description":"상위표준카테고리번호"},"stdLrgCtgNo":{"type":"string","description":"표준대카테고리번호"},"stdMidCtgNo":{"type":"string","description":"표준중카테고리번호"},"stdSmlCtgNo":{"type":"string","description":"표준소카테고리번호"},"stdThnCtgNo":{"type":"string","description":"표준세카테고리번호"},"mdId":{"type":"string","description":"MD아이디"},"safeCertiNeedYn":{"type":"string","description":"안전인증필요여부"},"goodsNotiLisartCd":{"type":"string","description":"상품고시품목코드"},"hsCd":{"type":"string","description":"품목분류코드"},"mrgnRate":{"type":"number","description":"카테고리 마진율"},"mdNm":{"type":"string","description":"MD이름","readOnly":true},"goodsNotiLisartCdNm":{"type":"string","description":"상품고시품목코드명","readOnly":true},"leafCtgYnChangePossible":{"type":"string","description":"리프표준분류여부 변경 가능여부","readOnly":true},"uprStdCtgNm":{"type":"string","description":"상위표준카테고리명","readOnly":true},"hierarchyText":{"type":"string","description":"계층구조 텍스트","readOnly":true},"realGridCUD":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtg","description":"CUD 목록"}}},"RealGridCUDRequestPrStdCtg":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtg"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/display/standardCategoryMgmt/getCategoryMrgnRateMgmt":{"get":{"tags":["표준카테고리관리"],"summary":"카테고리 마진율 관리 목록 조회","description":"## 기능설명\n* 카테고리 마진율 관리 목록을 조회한다.\n---\n## 상세설명\n* [BO] 전시 > 카테고리 관리 > 표준 카테고리 관리 > 카테고리 마진율 관리 탭\n* 카테고리 마진율 관리 탭에서 리프 카테고리의 마진율을 관리하기 위한 목록을 조회한다.\n","operationId":"getCategoryMrgnRateMgmt","responses":{"200":{"description":"카테고리 마진율 관리 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrStdCtg"}}}},"900":{"description":"카테고리 마진율 관리 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```
