# 상품평 평가항목 관리

## 고객프로필항목매핑목록 저장

> \## 기능설명\
> \* 고객프로필항목매핑목록을 등록/수정/삭제 합니다.\
> \---\
> \## 상세설명\
> \* 고객프로필항목매핑목록을 등록/수정/삭제 합니다.\
> \* 리프 카테고리 하나당 최대 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":{"RealGridCUDRequestPrStdCtgPrfleItemInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgPrfleItemInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgPrfleItemInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgPrfleItemInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgPrfleItemInfo"}}}},"PrStdCtgPrfleItemInfo":{"type":"object","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"mbrPrfleCd":{"type":"string","description":"회원프로필코드(ME010)"},"sortSeq":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/saveReviewPrfleItemListByCategory":{"post":{"tags":["상품평 평가항목 관리"],"summary":"고객프로필항목매핑목록 저장","description":"## 기능설명\n* 고객프로필항목매핑목록을 등록/수정/삭제 합니다.\n---\n## 상세설명\n* 고객프로필항목매핑목록을 등록/수정/삭제 합니다.\n* 리프 카테고리 하나당 최대 3개의 고객프로필항목까지 매핑 가능합니다.\n","operationId":"saveReviewPrfleItemListByCategory","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtgPrfleItemInfo"}}},"required":true},"responses":{"200":{"description":"고객프로필항목매핑목록 저장 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"고객프로필항목매핑목록 저장 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 평가값 목록 저장

> \## 기능설명\
> \* 평가값 목록을 등록/수정/삭제 합니다.\
> \---\
> \## 상세설명\
> \* 선택한 평가항목의 평가값 목록을 등록/수정/삭제 합니다.\
> \---\
> \## 수정번호\
> \* Release v1.04\_231120: 상품평 평가항목 관리 - 다국어 등록 수정<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":{"RealGridCUDRequestPrEvltValInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}}}},"PrEvltValInfo":{"type":"object","description":"평가값정보","properties":{"evltItemNo":{"type":"string","description":"평가항목번호"},"evltValNo":{"type":"string","description":"평가값번호"},"evltVal":{"type":"string","description":"평가값"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"evltValMl":{"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/reviewEvaluationItemMgmtApi/saveReviewEvaluationValueList":{"post":{"tags":["상품평 평가항목 관리"],"summary":"평가값 목록 저장","description":"## 기능설명\n* 평가값 목록을 등록/수정/삭제 합니다.\n---\n## 상세설명\n* 선택한 평가항목의 평가값 목록을 등록/수정/삭제 합니다.\n---\n## 수정번호\n* Release v1.04_231120: 상품평 평가항목 관리 - 다국어 등록 수정\n","operationId":"saveReviewEvaluationValueList","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestPrEvltValInfo"}}},"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":{"ReviewEvltMultiLangRequest":{"type":"object","description":"상품평 관리 API Request DTO","properties":{"prEvltItemCd":{"$ref":"#/components/schemas/PrEvltItemCd","description":"평가항목코드"},"realGridCUD":{"$ref":"#/components/schemas/RealGridCUDRequestPrEvltValInfo","description":"평가값정보"}}},"PrEvltItemCd":{"type":"object","description":"평가항목코드","properties":{"langCd":{"type":"string","description":"언어코드(CM009) ko:한국어, en:영어"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"useYn":{"type":"string","description":"사용여부"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"}}},"RealGridCUDRequestPrEvltValInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}}}},"PrEvltValInfo":{"type":"object","description":"평가값정보","properties":{"evltItemNo":{"type":"string","description":"평가항목번호"},"evltValNo":{"type":"string","description":"평가값번호"},"evltVal":{"type":"string","description":"평가값"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"evltValMl":{"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/reviewEvaluationItemMgmtApi/saveReviewEvaluationMultiLanguage":{"post":{"tags":["상품평 평가항목 관리"],"summary":"다국어 평가항목 저장","description":"## 기능설명\n* 다국어 평가항목 및 평가값 등록/수정 합니다.\n---\n## 상세설명\n* 선택한 평가항목 및 평가값의 다국어 등록/수정 합니다.\n","operationId":"saveReviewEvaluationMultiLanguage","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReviewEvltMultiLangRequest"}}},"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":{"RealGridCUDRequestPrEvltValInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltValInfo"}}}},"PrEvltValInfo":{"type":"object","description":"평가값정보","properties":{"evltItemNo":{"type":"string","description":"평가항목번호"},"evltValNo":{"type":"string","description":"평가값번호"},"evltVal":{"type":"string","description":"평가값"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"evltValMl":{"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/reviewEvaluationItemMgmtApi/saveReviewEvaluationMultiLanguageValueList":{"post":{"tags":["상품평 평가항목 관리"],"summary":"다국어 평가값 목록 저장","description":"## 기능설명\n* 다국어 평가값 목록을 등록/수정합니다.\n---\n## 상세설명\n* 평가항목에 매핑된 다국어 평가값 목록을 등록/수정합니다.\n","operationId":"saveReviewEvaluationMultiLanguageValueList","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestPrEvltValInfo"}}},"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":{"PrEvltItemCd":{"type":"object","description":"평가항목코드","properties":{"langCd":{"type":"string","description":"언어코드(CM009) ko:한국어, en:영어"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"useYn":{"type":"string","description":"사용여부"},"evltItemNmMl":{"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/reviewEvaluationItemMgmtApi/saveReviewEvaluationMultiLanguageItem":{"post":{"tags":["상품평 평가항목 관리"],"summary":"다국어 평가항목 저장","description":"## 기능설명\n* 다국어 평가항목을 등록/수정 합니다.\n---\n## 상세설명\n* 선택한 평가항목의 다국어 평가항목을 등록/수정 합니다.\n","operationId":"saveReviewEvaluationMultiLanguageItem","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrEvltItemCd"}}},"required":true},"responses":{"200":{"description":"다국어 평가항목 저장 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"다국어 평가항목 저장 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 평가항목목록 저장

> \## 기능설명\
> \* 평가항목목록을 저장합니다.\
> \---\
> \## 상세설명\
> \* 상품평 평가항목을 등록/수정합니다.\
> \* 평가항목명이 중복인 경우 오류를 반환합니다.\
> \* 해당 평가항목의 사용여부를 N으로 변경한 경우, 매핑된 카테고리 연결이 해제됩니다.<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":{"RealGridCUDRequestPrEvltItemCd":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltItemCd"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltItemCd"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltItemCd"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrEvltItemCd"}}}},"PrEvltItemCd":{"type":"object","description":"평가항목코드","properties":{"langCd":{"type":"string","description":"언어코드(CM009) ko:한국어, en:영어"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"useYn":{"type":"string","description":"사용여부"},"evltItemNmMl":{"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/reviewEvaluationItemMgmtApi/saveReviewEvaluationItemList":{"post":{"tags":["상품평 평가항목 관리"],"summary":"평가항목목록 저장","description":"## 기능설명\n* 평가항목목록을 저장합니다.\n---\n## 상세설명\n* 상품평 평가항목을 등록/수정합니다.\n* 평가항목명이 중복인 경우 오류를 반환합니다.\n* 해당 평가항목의 사용여부를 N으로 변경한 경우, 매핑된 카테고리 연결이 해제됩니다.\n","operationId":"saveReviewEvaluationItemList","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestPrEvltItemCd"}}},"required":true},"responses":{"200":{"description":"평가항목목록 저장 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"평가항목목록 저장 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 평가항목매핑목록 저장

> \## 기능설명\
> \* 평가항목매핑목록을 등록/수정/삭제 합니다.\
> \---\
> \## 상세설명\
> \* 표준카테고리와 매핑되는 평가항목매핑목록을 등록/수정/삭제 합니다.\
> \* 리프 카테고리만 평가항목 매핑이 가능합니다.\
> \* 리프 카테고리 하나당 최대 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":{"RealGridCUDRequestPrStdCtgEvltItemInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgEvltItemInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgEvltItemInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgEvltItemInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrStdCtgEvltItemInfo"}}}},"PrStdCtgEvltItemInfo":{"type":"object","description":"표준카테고리평가항목정보","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"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/reviewEvaluationItemMgmtApi/saveReviewEvaluationItemListByCategory":{"post":{"tags":["상품평 평가항목 관리"],"summary":"평가항목매핑목록 저장","description":"## 기능설명\n* 평가항목매핑목록을 등록/수정/삭제 합니다.\n---\n## 상세설명\n* 표준카테고리와 매핑되는 평가항목매핑목록을 등록/수정/삭제 합니다.\n* 리프 카테고리만 평가항목 매핑이 가능합니다.\n* 리프 카테고리 하나당 최대 3개의 평가항목까지 매핑 가능합니다.\n","operationId":"saveReviewEvaluationItemListByCategory","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestPrStdCtgEvltItemInfo"}}},"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":{"ReviewEvaluationItemMgmtApiRequest":{"type":"object","description":"상품평 평가항목 관리 API Request DTO","properties":{"stdCtgNo":{"type":"string","description":"표준분류카테고리번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필항목명"},"evltItemNoList":{"type":"array","description":"평가항목번호목록","items":{"type":"string"}},"mbrPrfleCdList":{"type":"array","description":"고객프로필항목목록","items":{"type":"string"}},"regStartDtm":{"type":"string","format":"date-time","description":"평가항목 등록 시작일시"},"regEndDtm":{"type":"string","format":"date-time","description":"평가항목 등록 종료일시"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"useYn":{"type":"string","description":"사용여부"},"regDtmAll":{"type":"boolean","description":"평가항목 등록일 전체여부"}}},"ResponseRealGridListResponseReviewPrfleItemMgmtApiResponse":{"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/RealGridListResponseReviewPrfleItemMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseReviewPrfleItemMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/ReviewPrfleItemMgmtApiResponse"}}}},"ReviewPrfleItemMgmtApiResponse":{"type":"object","description":"고객프로필항목 매핑목록 조회 API Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필코드명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"addYn":{"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/reviewEvaluationItemMgmtApi/getReviewPrfleItemListForAdd":{"get":{"tags":["상품평 평가항목 관리"],"summary":"추가대상 고객 프로필 항목 목록 조회","description":"## 기능설명\n* 추가대상 고객 프로필 항목 목록을 조회합니다.\n---\n## 상세설명\n* 추가대상 고객 프로필 항목 목록을 조회합니다.\n* 고객 프로필 항목명 조건으로 조회할 수 있습니다.\n","operationId":"getReviewPrfleItemListForAdd","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiRequest"}}],"responses":{"200":{"description":"추가대상 고객 프로필 항목 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseReviewPrfleItemMgmtApiResponse"}}}},"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":{"ReviewEvaluationItemMgmtApiRequest":{"type":"object","description":"상품평 평가항목 관리 API Request DTO","properties":{"stdCtgNo":{"type":"string","description":"표준분류카테고리번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필항목명"},"evltItemNoList":{"type":"array","description":"평가항목번호목록","items":{"type":"string"}},"mbrPrfleCdList":{"type":"array","description":"고객프로필항목목록","items":{"type":"string"}},"regStartDtm":{"type":"string","format":"date-time","description":"평가항목 등록 시작일시"},"regEndDtm":{"type":"string","format":"date-time","description":"평가항목 등록 종료일시"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"useYn":{"type":"string","description":"사용여부"},"regDtmAll":{"type":"boolean","description":"평가항목 등록일 전체여부"}}},"ResponseRealGridListResponseReviewPrfleItemMgmtApiResponse":{"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/RealGridListResponseReviewPrfleItemMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseReviewPrfleItemMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/ReviewPrfleItemMgmtApiResponse"}}}},"ReviewPrfleItemMgmtApiResponse":{"type":"object","description":"고객프로필항목 매핑목록 조회 API Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필코드명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"addYn":{"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/reviewEvaluationItemMgmtApi/getReviewPrfleItemListByCategory":{"get":{"tags":["상품평 평가항목 관리"],"summary":"고객프로필항목 매핑목록 조회","description":"## 기능설명\n* 고객프로필항목 매핑목록을 조회합니다.\n---\n## 상세설명\n* 표준카테고리와 매핑되는 고객프로필항목 매핑목록을 조회합니다.\n","operationId":"getReviewPrfleItemListByCategory","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiRequest"}}],"responses":{"200":{"description":"고객프로필항목 매핑목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseReviewPrfleItemMgmtApiResponse"}}}},"900":{"description":"고객프로필항목 매핑목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 평가값 목록 조회

> \## 기능설명\
> \* 평가값 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 평가항목에 매핑된 평가값 목록을 조회합니다.\
> \---\
> \## 수정번호\
> \* Release v1.04\_231120: 상품평 평가항목 관리 - 다국어 등록 수정<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":{"ReviewEvaluationItemMgmtApiRequest":{"type":"object","description":"상품평 평가항목 관리 API Request DTO","properties":{"stdCtgNo":{"type":"string","description":"표준분류카테고리번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필항목명"},"evltItemNoList":{"type":"array","description":"평가항목번호목록","items":{"type":"string"}},"mbrPrfleCdList":{"type":"array","description":"고객프로필항목목록","items":{"type":"string"}},"regStartDtm":{"type":"string","format":"date-time","description":"평가항목 등록 시작일시"},"regEndDtm":{"type":"string","format":"date-time","description":"평가항목 등록 종료일시"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"useYn":{"type":"string","description":"사용여부"},"regDtmAll":{"type":"boolean","description":"평가항목 등록일 전체여부"}}},"ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse":{"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/RealGridListResponseReviewEvaluationItemMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseReviewEvaluationItemMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiResponse"}}}},"ReviewEvaluationItemMgmtApiResponse":{"type":"object","description":"상품평 평가항목관리 Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"type":"string","description":"필수여부"},"addYn":{"type":"string","description":"추가가능여부"},"evltVal":{"type":"string","description":"평가값"},"useYn":{"type":"string","description":"사용여부"},"stdCtgMapCnt":{"type":"integer","format":"int32","description":"매핑표준분류수"},"evltValNo":{"type":"string","description":"평가값번호"},"stdCtgHierarchy":{"type":"string","description":"표준분류구조"},"evltValMl":{"type":"string","description":"평가값(다국어)"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"totalCount":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/getReviewEvaluationValueList":{"get":{"tags":["상품평 평가항목 관리"],"summary":"평가값 목록 조회","description":"## 기능설명\n* 평가값 목록을 조회합니다.\n---\n## 상세설명\n* 평가항목에 매핑된 평가값 목록을 조회합니다.\n---\n## 수정번호\n* Release v1.04_231120: 상품평 평가항목 관리 - 다국어 등록 수정\n","operationId":"getReviewEvaluationValueList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiRequest"}}],"responses":{"200":{"description":"평가값 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse"}}}},"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":{"ReviewEvaluationItemMgmtApiRequest":{"type":"object","description":"상품평 평가항목 관리 API Request DTO","properties":{"stdCtgNo":{"type":"string","description":"표준분류카테고리번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필항목명"},"evltItemNoList":{"type":"array","description":"평가항목번호목록","items":{"type":"string"}},"mbrPrfleCdList":{"type":"array","description":"고객프로필항목목록","items":{"type":"string"}},"regStartDtm":{"type":"string","format":"date-time","description":"평가항목 등록 시작일시"},"regEndDtm":{"type":"string","format":"date-time","description":"평가항목 등록 종료일시"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"useYn":{"type":"string","description":"사용여부"},"regDtmAll":{"type":"boolean","description":"평가항목 등록일 전체여부"}}},"ResponseReviewEvaluationItemMgmtApiResponse":{"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/ReviewEvaluationItemMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ReviewEvaluationItemMgmtApiResponse":{"type":"object","description":"상품평 평가항목관리 Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"type":"string","description":"필수여부"},"addYn":{"type":"string","description":"추가가능여부"},"evltVal":{"type":"string","description":"평가값"},"useYn":{"type":"string","description":"사용여부"},"stdCtgMapCnt":{"type":"integer","format":"int32","description":"매핑표준분류수"},"evltValNo":{"type":"string","description":"평가값번호"},"stdCtgHierarchy":{"type":"string","description":"표준분류구조"},"evltValMl":{"type":"string","description":"평가값(다국어)"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"totalCount":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/getReviewEvaluationMultiLanguage":{"get":{"tags":["상품평 평가항목 관리"],"summary":"다국어 평가항목명 조회","description":"## 기능설명\n* 다국어 평가항목명 조회합니다.\n---\n## 상세설명\n* 선택한 평가항목의 다국어 평가항목명 조회합니다.\n---\n","operationId":"getReviewEvaluationMultiLanguage","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiRequest"}}],"responses":{"200":{"description":"다국어 평가항목명 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseReviewEvaluationItemMgmtApiResponse"}}}},"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":{"ReviewEvaluationItemMgmtApiRequest":{"type":"object","description":"상품평 평가항목 관리 API Request DTO","properties":{"stdCtgNo":{"type":"string","description":"표준분류카테고리번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필항목명"},"evltItemNoList":{"type":"array","description":"평가항목번호목록","items":{"type":"string"}},"mbrPrfleCdList":{"type":"array","description":"고객프로필항목목록","items":{"type":"string"}},"regStartDtm":{"type":"string","format":"date-time","description":"평가항목 등록 시작일시"},"regEndDtm":{"type":"string","format":"date-time","description":"평가항목 등록 종료일시"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"useYn":{"type":"string","description":"사용여부"},"regDtmAll":{"type":"boolean","description":"평가항목 등록일 전체여부"}}},"ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse":{"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/RealGridListResponseReviewEvaluationItemMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseReviewEvaluationItemMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiResponse"}}}},"ReviewEvaluationItemMgmtApiResponse":{"type":"object","description":"상품평 평가항목관리 Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"type":"string","description":"필수여부"},"addYn":{"type":"string","description":"추가가능여부"},"evltVal":{"type":"string","description":"평가값"},"useYn":{"type":"string","description":"사용여부"},"stdCtgMapCnt":{"type":"integer","format":"int32","description":"매핑표준분류수"},"evltValNo":{"type":"string","description":"평가값번호"},"stdCtgHierarchy":{"type":"string","description":"표준분류구조"},"evltValMl":{"type":"string","description":"평가값(다국어)"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"totalCount":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/getReviewEvaluationMultiLanguageValueList":{"get":{"tags":["상품평 평가항목 관리"],"summary":"다국어 평가값 목록 조회","description":"## 기능설명\n* 다국어 평가값 목록을 조회합니다.\n---\n## 상세설명\n* 선택한 평가항목의 다국어 평가값 목록을 조회합니다.\n","operationId":"getReviewEvaluationMultiLanguageValueList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiRequest"}}],"responses":{"200":{"description":"다국어 평가값 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse"}}}},"900":{"description":"다국어 평가값 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 다국어 평가항목 조회

> \## 기능설명\
> \* 다국어 평가항목을 조회합니다.\
> \---\
> \## 상세설명\
> \* 선택한 평가항목의 다국어 평가항목을 조회합니다.\
> \---\
> \## 수정번호\
> \* Release v1.04\_231120: 상품평 평가항목 관리 - 다국어 등록 수정<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":{"ReviewEvaluationItemMgmtApiRequest":{"type":"object","description":"상품평 평가항목 관리 API Request DTO","properties":{"stdCtgNo":{"type":"string","description":"표준분류카테고리번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필항목명"},"evltItemNoList":{"type":"array","description":"평가항목번호목록","items":{"type":"string"}},"mbrPrfleCdList":{"type":"array","description":"고객프로필항목목록","items":{"type":"string"}},"regStartDtm":{"type":"string","format":"date-time","description":"평가항목 등록 시작일시"},"regEndDtm":{"type":"string","format":"date-time","description":"평가항목 등록 종료일시"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"useYn":{"type":"string","description":"사용여부"},"regDtmAll":{"type":"boolean","description":"평가항목 등록일 전체여부"}}},"ResponseListReviewEvaluationItemMgmtApiResponse":{"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/ReviewEvaluationItemMgmtApiResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ReviewEvaluationItemMgmtApiResponse":{"type":"object","description":"상품평 평가항목관리 Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"type":"string","description":"필수여부"},"addYn":{"type":"string","description":"추가가능여부"},"evltVal":{"type":"string","description":"평가값"},"useYn":{"type":"string","description":"사용여부"},"stdCtgMapCnt":{"type":"integer","format":"int32","description":"매핑표준분류수"},"evltValNo":{"type":"string","description":"평가값번호"},"stdCtgHierarchy":{"type":"string","description":"표준분류구조"},"evltValMl":{"type":"string","description":"평가값(다국어)"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"totalCount":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/getReviewEvaluationMultiLanguageItem":{"get":{"tags":["상품평 평가항목 관리"],"summary":"다국어 평가항목 조회","description":"## 기능설명\n* 다국어 평가항목을 조회합니다.\n---\n## 상세설명\n* 선택한 평가항목의 다국어 평가항목을 조회합니다.\n---\n## 수정번호\n* Release v1.04_231120: 상품평 평가항목 관리 - 다국어 등록 수정\n","operationId":"getReviewEvaluationMultiLanguageItem","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiRequest"}}],"responses":{"200":{"description":"다국어 평가항목 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListReviewEvaluationItemMgmtApiResponse"}}}},"900":{"description":"다국어 평가항목 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 평가값 목록 조회

> \## 기능설명\
> \* 평가값 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 조회 조건과 일치하는 평가값 목록을 조회합니다.\
> \* 세부 조회 조건은 아래와 같습니다.\
> &#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":{"ResponseListReviewEvaluationItemMgmtApiResponse":{"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/ReviewEvaluationItemMgmtApiResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ReviewEvaluationItemMgmtApiResponse":{"type":"object","description":"상품평 평가항목관리 Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"type":"string","description":"필수여부"},"addYn":{"type":"string","description":"추가가능여부"},"evltVal":{"type":"string","description":"평가값"},"useYn":{"type":"string","description":"사용여부"},"stdCtgMapCnt":{"type":"integer","format":"int32","description":"매핑표준분류수"},"evltValNo":{"type":"string","description":"평가값번호"},"stdCtgHierarchy":{"type":"string","description":"표준분류구조"},"evltValMl":{"type":"string","description":"평가값(다국어)"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"totalCount":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/getReviewEvaluationItemValueList":{"get":{"tags":["상품평 평가항목 관리"],"summary":"평가값 목록 조회","description":"## 기능설명\n* 평가값 목록을 조회합니다.\n---\n## 상세설명\n* 조회 조건과 일치하는 평가값 목록을 조회합니다.\n* 세부 조회 조건은 아래와 같습니다.\n    * 등록기간\n    * 평가항목명\n","operationId":"getReviewEvaluationItemValueList","parameters":[{"name":"evltItemNo","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"평가값 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListReviewEvaluationItemMgmtApiResponse"}}}},"900":{"description":"평가값 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 평가항목 목록 조회

> \## 기능설명\
> \* 평가항목 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 조회 조건과 일치하는 평가항목 목록을 조회합니다.\
> \* 세부 조회 조건은 아래와 같습니다.\
> &#x20;   \* 등록기간\
> &#x20;   \* 평가항목명\
> \---\
> \## 수정번호\
> \* Release v1.04\_231120: 상품평 평가항목 관리 - 다국어 등록 수정<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":{"ReviewEvaluationItemMgmtApiRequest":{"type":"object","description":"상품평 평가항목 관리 API Request DTO","properties":{"stdCtgNo":{"type":"string","description":"표준분류카테고리번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필항목명"},"evltItemNoList":{"type":"array","description":"평가항목번호목록","items":{"type":"string"}},"mbrPrfleCdList":{"type":"array","description":"고객프로필항목목록","items":{"type":"string"}},"regStartDtm":{"type":"string","format":"date-time","description":"평가항목 등록 시작일시"},"regEndDtm":{"type":"string","format":"date-time","description":"평가항목 등록 종료일시"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"useYn":{"type":"string","description":"사용여부"},"regDtmAll":{"type":"boolean","description":"평가항목 등록일 전체여부"}}},"ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse":{"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/RealGridListResponseReviewEvaluationItemMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseReviewEvaluationItemMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiResponse"}}}},"ReviewEvaluationItemMgmtApiResponse":{"type":"object","description":"상품평 평가항목관리 Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"type":"string","description":"필수여부"},"addYn":{"type":"string","description":"추가가능여부"},"evltVal":{"type":"string","description":"평가값"},"useYn":{"type":"string","description":"사용여부"},"stdCtgMapCnt":{"type":"integer","format":"int32","description":"매핑표준분류수"},"evltValNo":{"type":"string","description":"평가값번호"},"stdCtgHierarchy":{"type":"string","description":"표준분류구조"},"evltValMl":{"type":"string","description":"평가값(다국어)"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"totalCount":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/getReviewEvaluationItemList":{"get":{"tags":["상품평 평가항목 관리"],"summary":"평가항목 목록 조회","description":"## 기능설명\n* 평가항목 목록을 조회합니다.\n---\n## 상세설명\n* 조회 조건과 일치하는 평가항목 목록을 조회합니다.\n* 세부 조회 조건은 아래와 같습니다.\n    * 등록기간\n    * 평가항목명\n---\n## 수정번호\n* Release v1.04_231120: 상품평 평가항목 관리 - 다국어 등록 수정\n","operationId":"getReviewEvaluationItemList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiRequest"}}],"responses":{"200":{"description":"평가항목 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse"}}}},"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":{"ReviewEvaluationItemMgmtApiRequest":{"type":"object","description":"상품평 평가항목 관리 API Request DTO","properties":{"stdCtgNo":{"type":"string","description":"표준분류카테고리번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필항목명"},"evltItemNoList":{"type":"array","description":"평가항목번호목록","items":{"type":"string"}},"mbrPrfleCdList":{"type":"array","description":"고객프로필항목목록","items":{"type":"string"}},"regStartDtm":{"type":"string","format":"date-time","description":"평가항목 등록 시작일시"},"regEndDtm":{"type":"string","format":"date-time","description":"평가항목 등록 종료일시"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"useYn":{"type":"string","description":"사용여부"},"regDtmAll":{"type":"boolean","description":"평가항목 등록일 전체여부"}}},"ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse":{"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/RealGridListResponseReviewEvaluationItemMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseReviewEvaluationItemMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiResponse"}}}},"ReviewEvaluationItemMgmtApiResponse":{"type":"object","description":"상품평 평가항목관리 Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"type":"string","description":"필수여부"},"addYn":{"type":"string","description":"추가가능여부"},"evltVal":{"type":"string","description":"평가값"},"useYn":{"type":"string","description":"사용여부"},"stdCtgMapCnt":{"type":"integer","format":"int32","description":"매핑표준분류수"},"evltValNo":{"type":"string","description":"평가값번호"},"stdCtgHierarchy":{"type":"string","description":"표준분류구조"},"evltValMl":{"type":"string","description":"평가값(다국어)"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"totalCount":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/getReviewEvaluationItemListForAdd":{"get":{"tags":["상품평 평가항목 관리"],"summary":"추가대상 평가항목 목록 조회","description":"## 기능설명\n* 추가대상 평가항목 목록을 조회합니다.\n---\n## 상세설명\n* 추가대상 평가항목 목록을 조회합니다.\n* 평가항목명 조건으로 조회할 수 있습니다.\n","operationId":"getReviewEvaluationItemListForAdd","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiRequest"}}],"responses":{"200":{"description":"추가대상 평가항목 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse"}}}},"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":{"ReviewEvaluationItemMgmtApiRequest":{"type":"object","description":"상품평 평가항목 관리 API Request DTO","properties":{"stdCtgNo":{"type":"string","description":"표준분류카테고리번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"mbrPrfleCd":{"type":"string","description":"고객프로필코드"},"mbrPrfleNm":{"type":"string","description":"고객프로필항목명"},"evltItemNoList":{"type":"array","description":"평가항목번호목록","items":{"type":"string"}},"mbrPrfleCdList":{"type":"array","description":"고객프로필항목목록","items":{"type":"string"}},"regStartDtm":{"type":"string","format":"date-time","description":"평가항목 등록 시작일시"},"regEndDtm":{"type":"string","format":"date-time","description":"평가항목 등록 종료일시"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"useYn":{"type":"string","description":"사용여부"},"regDtmAll":{"type":"boolean","description":"평가항목 등록일 전체여부"}}},"ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse":{"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/RealGridListResponseReviewEvaluationItemMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseReviewEvaluationItemMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiResponse"}}}},"ReviewEvaluationItemMgmtApiResponse":{"type":"object","description":"상품평 평가항목관리 Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"type":"string","description":"필수여부"},"addYn":{"type":"string","description":"추가가능여부"},"evltVal":{"type":"string","description":"평가값"},"useYn":{"type":"string","description":"사용여부"},"stdCtgMapCnt":{"type":"integer","format":"int32","description":"매핑표준분류수"},"evltValNo":{"type":"string","description":"평가값번호"},"stdCtgHierarchy":{"type":"string","description":"표준분류구조"},"evltValMl":{"type":"string","description":"평가값(다국어)"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"totalCount":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/getReviewEvaluationItemListByCategory":{"get":{"tags":["상품평 평가항목 관리"],"summary":"평가항목 매핑목록 조회","description":"## 기능설명\n* 상품평 평가항목 매핑목록을 조회합니다.\n---\n## 상세설명\n* 표준 카테고리와 매핑되는 상품평 평가항목 매핑목록을 조회합니다.\n","operationId":"getReviewEvaluationItemListByCategory","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewEvaluationItemMgmtApiRequest"}}],"responses":{"200":{"description":"평가항목 매핑목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseReviewEvaluationItemMgmtApiResponse"}}}},"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":{"ResponseListReviewEvaluationItemMgmtApiResponse":{"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/ReviewEvaluationItemMgmtApiResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ReviewEvaluationItemMgmtApiResponse":{"type":"object","description":"상품평 평가항목관리 Response","properties":{"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"evltItemNo":{"type":"string","description":"평가항목번호"},"evltItemNm":{"type":"string","description":"평가항목명"},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"mdtyEvltItemYn":{"type":"string","description":"필수여부"},"addYn":{"type":"string","description":"추가가능여부"},"evltVal":{"type":"string","description":"평가값"},"useYn":{"type":"string","description":"사용여부"},"stdCtgMapCnt":{"type":"integer","format":"int32","description":"매핑표준분류수"},"evltValNo":{"type":"string","description":"평가값번호"},"stdCtgHierarchy":{"type":"string","description":"표준분류구조"},"evltValMl":{"type":"string","description":"평가값(다국어)"},"evltItemNmMl":{"type":"string","description":"평가항목명(다국어)"},"totalCount":{"type":"integer","format":"int32","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/reviewEvaluationItemMgmtApi/getMappedCategoryListToEvaluationItem":{"get":{"tags":["상품평 평가항목 관리"],"summary":"매핑된 표준카테고리 목록 조회","description":"## 기능설명\n* 매핑된 표준카테고리 목록을 조회합니다.\n---\n## 상세설명\n* 상품평 평가항목과 매핑된 표준카테고리의 목록을 조회합니다.\n","operationId":"getMappedCategoryListToEvaluationItem","parameters":[{"name":"evltItemNo","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"매핑된 표준카테고리 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListReviewEvaluationItemMgmtApiResponse"}}}},"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-13.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.
