> 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/api-en/back-office-api-reference/goods-bo-api/product-review-management.md).

# Product Review Management

## Register Product Review Comment

> \## Function Description\
> \* Registers a product review comment.\
> \---\
> \## Detailed Description\
> \* Registers a product review comment.\
> \* Returns an error message if a required value is missing.\
> &#x20;   \* Required values: comment content, review number, author type code, author ID, comment display status code, system registrant ID<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"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/reviewMgmtApi/registReviewReply":{"post":{"tags":["Product Review Management"],"summary":"Register Product Review Comment","description":"## Function Description\n* Registers a product review comment.\n---\n## Detailed Description\n* Registers a product review comment.\n* Returns an error message if a required value is missing.\n    * Required values: comment content, review number, author type code, author ID, comment display status code, system registrant ID\n","operationId":"registReviewReply","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}},"required":true},"responses":{"200":{"description":"Register Product Review Comment Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"Register Product Review Comment Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Change Product Review Display Status

> \## Function Description\
> \* Changes the product review display status.\
> \---\
> \## Detailed Description\
> \* Changes the display status of a product review.\
> \* Returns an error message if the review number or review display status code is missing.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"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/reviewMgmtApi/modifyReviewDisplayState":{"post":{"tags":["Product Review Management"],"summary":"Change Product Review Display Status","description":"## Function Description\n* Changes the product review display status.\n---\n## Detailed Description\n* Changes the display status of a product review.\n* Returns an error message if the review number or review display status code is missing.\n","operationId":"modifyReviewDisplayState","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}},"required":true},"responses":{"200":{"description":"Change Product Review Display Status Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"Change Product Review Display Status Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Change Content Display Status

> \## Function Description\
> \* Changes the content display status.\
> \---\
> \## Detailed Description\
> \* Changes the content display status.\
> \* Returns an error message if the review number or content display status code is missing.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"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/reviewMgmtApi/modifyReviewContDisplayState":{"post":{"tags":["Product Review Management"],"summary":"Change Content Display Status","description":"## Function Description\n* Changes the content display status.\n---\n## Detailed Description\n* Changes the content display status.\n* Returns an error message if the review number or content display status code is missing.\n","operationId":"modifyReviewContDisplayState","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}},"required":true},"responses":{"200":{"description":"Change Content Display Status Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"Change Content Display Status Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Change Comment List Display Status

> \## Function Description\
> \* Changes the display status of the comment list.\
> \---\
> \## Detailed Description\
> \* Changes the display status of the comment list.\
> \* Returns an error message if the review number, comment sequence number, or comment display status code is missing.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"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/reviewMgmtApi/modifyRepliesDisplayState":{"post":{"tags":["Product Review Management"],"summary":"Change Comment List Display Status","description":"## Function Description\n* Changes the display status of the comment list.\n---\n## Detailed Description\n* Changes the display status of the comment list.\n* Returns an error message if the review number, comment sequence number, or comment display status code is missing.\n","operationId":"modifyRepliesDisplayState","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}},"required":true},"responses":{"200":{"description":"Change Comment List Display Status Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"Change Comment List Display Status Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Change Product Review List Display Status

> \## Function Description\
> \* Changes the display status of the product review list.\
> \---\
> \## Detailed Description\
> \* Batch changes the display status of the product reviews selected in the product review list.<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":{"ReviewMgmtApiRequest":{"type":"object","description":"Review Management API Request DTO","properties":{"revWrtStartDtm":{"type":"string","format":"date-time","description":"Review Registration Start Date"},"revWrtEndDtm":{"type":"string","format":"date-time","description":"Review Registration End Date"},"revGbCd":{"type":"string","description":"Review Type Code"},"revDispStatCd":{"type":"string","description":"Review Display Status Code"},"goodsNm":{"type":"string","description":"Product Name"},"loginId":{"type":"string","description":"Member ID"},"mbrNm":{"type":"string","description":"Member Name"},"wrtrIsUserYn":{"type":"string","description":"My Comment Status"},"revDclYn":{"type":"string","description":"Review Report Status"},"entrNo":{"type":"string","description":"Vendor No."},"revScrValList":{"type":"array","description":"Rating","items":{"type":"string"}},"revWrtDtmAll":{"type":"boolean","description":"Entire Writing Date Status"},"ordNo":{"type":"string","description":"Order No."},"hlpfulYn":{"type":"string","description":"Recommendation Status"},"revNo":{"type":"string","description":"Review No."},"revNoList":{"type":"array","description":"Review No. List","items":{"type":"string"}},"includePriceYn":{"type":"string","description":"Selling Price Inclusion Status"},"reviewImgYn":{"type":"string","description":"Review Content Inclusion Status"},"saleStatCdArr":{"type":"array","description":"Product Sales Status List","items":{"type":"string"}},"brandNm":{"type":"string","description":"Brand Name"},"mdId":{"type":"string","description":"MD in Charge"},"revScrVal":{"type":"number","format":"float","description":"Review Score"},"goodsNoOption":{"type":"string","description":"Product No. Option"},"goodsNoArray":{"type":"array","description":"Product No. List Array","items":{"type":"string"}},"goodsNoFrom":{"type":"string","description":"Product No. From Condition"},"goodsNoTo":{"type":"string","description":"Product No. To Condition"},"goodsNo":{"type":"string","description":"Product No."},"condxMbrOpt":{"type":"string","description":"Search Type"},"condxMbrValue":{"type":"string","description":"Input Value"}}},"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/reviewMgmtApi/modifyMultipleReviewsDisplayState":{"post":{"tags":["Product Review Management"],"summary":"Change Product Review List Display Status","description":"## Function Description\n* Changes the display status of the product review list.\n---\n## Detailed Description\n* Batch changes the display status of the product reviews selected in the product review list.\n","operationId":"modifyMultipleReviewsDisplayState","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReviewMgmtApiRequest"}}},"required":true},"responses":{"200":{"description":"Change Product Review List Display Status Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"Change Product Review List Display Status Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Search Product Review Comment List

> \## Function Description\
> \* Searches the product review comment list.\
> \---\
> \## Detailed Description\
> \* Searches the product review comment list.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"ResponseRealGridListResponseReviewDetailApiResponse":{"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/RealGridListResponseReviewDetailApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseReviewDetailApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/ReviewDetailApiResponse"}}}},"ReviewDetailApiResponse":{"type":"object","description":"Review Detail Response DTO","properties":{"revNo":{"type":"string","description":"Review No."},"goodsNo":{"type":"string","description":"Product No."},"goodsNm":{"type":"string","description":"Product Name"},"loginId":{"type":"string","description":"Member ID"},"ordNo":{"type":"string","description":"Order No."},"revWrtDtm":{"type":"string","format":"date-time","description":"Review Creation Date/Time"},"revTypCdNm":{"type":"string","description":"Review Type Code Name"},"revGbCdNm":{"type":"string","description":"Review Classification Code Name"},"hlpfulCnt":{"type":"string","description":"Helpful Count"},"replyCnt":{"type":"string","description":"Comment Count"},"revDclCnt":{"type":"string","description":"Review Report Count"},"revScrVal":{"type":"string","description":"Review Rating"},"stfd1Yn":{"type":"string","description":"Satisfaction 1 Status"},"stfd2Yn":{"type":"string","description":"Satisfaction 2 Status"},"stfd3Yn":{"type":"string","description":"Satisfaction Level 3 Status"},"revDispStatCd":{"type":"string","description":"Review Display Status Code"},"dispProcmnId":{"type":"string","description":"Display Processor ID"},"dispProcDtm":{"type":"string","format":"date-time","description":"Display Processing Date/Time"},"contDispStatCd":{"type":"string","description":"Content Display Status Code"},"revCont":{"type":"string","description":"Review Content"},"entrNo":{"type":"string","description":"Vendor No."},"siteNm":{"type":"string","description":"Site Name"},"replySeq":{"type":"string","description":"Comment Sequence No."},"wrtmnGbCdNm":{"type":"string","description":"Author Type Code Name (PR037)"},"wrtmnId":{"type":"string","description":"Author ID"},"replyCont":{"type":"string","description":"Comment Content"},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022)"},"replySeqDispStatCdNm":{"type":"string","description":"Comment Display Status Code Name"},"totalCount":{"type":"integer","format":"int32","description":"Total Count"}}},"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/reviewMgmtApi/getReviewReplyList":{"get":{"tags":["Product Review Management"],"summary":"Search Product Review Comment List","description":"## Function Description\n* Searches the product review comment list.\n---\n## Detailed Description\n* Searches the product review comment list.\n","operationId":"getReviewReplyList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}],"responses":{"200":{"description":"Search Product Review Comment List Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseReviewDetailApiResponse"}}}},"900":{"description":"Search Product Review Comment List Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Search Product Review Customer Profile Answer List

> \## Function Description\
> \* Searches the product review customer profile answer list.\
> \---\
> \## Detailed Description\
> \* Searches the product review customer profile answer list. Called from the product review detail popup.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"ResponseListReviewMemberProfileResponse":{"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/ReviewMemberProfileResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ReviewMemberProfileResponse":{"type":"object","description":"Review Customer Profile Answer List Inquiry API Response","properties":{"revNo":{"type":"string","description":"Review No."},"mbrPrfleCd":{"type":"string","description":"Customer Profile Code"},"mbrPrfleCdNm":{"type":"string","description":"Customer Profile Name"},"ansCont":{"type":"string","description":"Answer Content"}}},"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/reviewMgmtApi/getReviewMemberProfileList":{"get":{"tags":["Product Review Management"],"summary":"Search Product Review Customer Profile Answer List","description":"## Function Description\n* Searches the product review customer profile answer list.\n---\n## Detailed Description\n* Searches the product review customer profile answer list. Called from the product review detail popup.\n","operationId":"getReviewMemberProfileList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}],"responses":{"200":{"description":"Search Product Review Customer Profile Answer List Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListReviewMemberProfileResponse"}}}},"900":{"description":"Search Product Review Customer Profile Answer List Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Search Product Review List

> \## Function Description\
> \* Searches the product review list.\
> \---\
> \## Detailed Description\
> \* Searches the product review list matching the search conditions.\
> \* The detailed search conditions are as follows.\
> &#x20;   \* Writing period\
> &#x20;   \* Product review type\
> &#x20;   \* Display status\
> &#x20;   \* Product review report status\
> &#x20;   \* Member ID/Name\
> &#x20;   \* Product number\
> &#x20;   \* Product name<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":{"ReviewMgmtApiRequest":{"type":"object","description":"Review Management API Request DTO","properties":{"revWrtStartDtm":{"type":"string","format":"date-time","description":"Review Registration Start Date"},"revWrtEndDtm":{"type":"string","format":"date-time","description":"Review Registration End Date"},"revGbCd":{"type":"string","description":"Review Type Code"},"revDispStatCd":{"type":"string","description":"Review Display Status Code"},"goodsNm":{"type":"string","description":"Product Name"},"loginId":{"type":"string","description":"Member ID"},"mbrNm":{"type":"string","description":"Member Name"},"wrtrIsUserYn":{"type":"string","description":"My Comment Status"},"revDclYn":{"type":"string","description":"Review Report Status"},"entrNo":{"type":"string","description":"Vendor No."},"revScrValList":{"type":"array","description":"Rating","items":{"type":"string"}},"revWrtDtmAll":{"type":"boolean","description":"Entire Writing Date Status"},"ordNo":{"type":"string","description":"Order No."},"hlpfulYn":{"type":"string","description":"Recommendation Status"},"revNo":{"type":"string","description":"Review No."},"revNoList":{"type":"array","description":"Review No. List","items":{"type":"string"}},"includePriceYn":{"type":"string","description":"Selling Price Inclusion Status"},"reviewImgYn":{"type":"string","description":"Review Content Inclusion Status"},"saleStatCdArr":{"type":"array","description":"Product Sales Status List","items":{"type":"string"}},"brandNm":{"type":"string","description":"Brand Name"},"mdId":{"type":"string","description":"MD in Charge"},"revScrVal":{"type":"number","format":"float","description":"Review Score"},"goodsNoOption":{"type":"string","description":"Product No. Option"},"goodsNoArray":{"type":"array","description":"Product No. List Array","items":{"type":"string"}},"goodsNoFrom":{"type":"string","description":"Product No. From Condition"},"goodsNoTo":{"type":"string","description":"Product No. To Condition"},"goodsNo":{"type":"string","description":"Product No."},"condxMbrOpt":{"type":"string","description":"Search Type"},"condxMbrValue":{"type":"string","description":"Input Value"}}},"ResponseRealGridListResponseReviewMgmtApiResponse":{"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/RealGridListResponseReviewMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseReviewMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/ReviewMgmtApiResponse"}}}},"ReviewMgmtApiResponse":{"type":"object","description":"Review Management Response DTO","properties":{"totalCount":{"type":"integer","format":"int32","description":"Total Count"},"siteNm":{"type":"string","description":"Site Name"},"goodsNo":{"type":"string","description":"Product No."},"goodsNm":{"type":"string","description":"Product Name"},"revScrVal":{"type":"number","format":"float","description":"Review Rating"},"revNo":{"type":"string","description":"Review No."},"revCont":{"type":"string","description":"Review Content"},"revGbCd":{"type":"string","description":"Review Type Code"},"revGbCdNm":{"type":"string","description":"Review Classification Code Name"},"revTypCd":{"type":"string","description":"Review Type Code"},"revTypCdNm":{"type":"string","description":"Review Type Code Name"},"loginId":{"type":"string","description":"Member ID"},"revWrtDtm":{"type":"string","format":"date-time","description":"Review Creation Date/Time"},"ordNo":{"type":"string","description":"Order No."},"replyCnt":{"type":"integer","format":"int32","description":"Comment Count"},"hlpfulCnt":{"type":"integer","format":"int32","description":"Helpful Count"},"dclCnt":{"type":"integer","format":"int32","description":"Report Count"},"revDispStatCd":{"type":"string","description":"Review Display Status Code"},"revDispStatCdNm":{"type":"string","description":"Review Display Status Code Name"},"entrNm":{"type":"string","description":"Partner Name"},"dispProcmnId":{"type":"string","description":"Display Processor ID"},"dispProcDtm":{"type":"string","format":"date-time","description":"Display Processing Date/Time"},"saleStatCd":{"type":"string","description":"Product Status Code"},"saleStatNm":{"type":"string","description":"Product Status Name"},"mdId":{"type":"string","description":"MD in Charge"},"mdNm":{"type":"string","description":"MD in Charge Name"},"revTotCnt":{"type":"string","description":"Review Count"},"salePrc":{"type":"number","description":"Selling Price"},"contRevGbCd":{"type":"string","description":"Content Type Code (PR021)"},"contFilePathNm":{"type":"string","description":"Content File Path"},"contFileNm":{"type":"string","description":"Content File Name"}}},"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/reviewMgmtApi/getReviewList":{"get":{"tags":["Product Review Management"],"summary":"Search Product Review List","description":"## Function Description\n* Searches the product review list.\n---\n## Detailed Description\n* Searches the product review list matching the search conditions.\n* The detailed search conditions are as follows.\n    * Writing period\n    * Product review type\n    * Display status\n    * Product review report status\n    * Member ID/Name\n    * Product number\n    * Product name\n","operationId":"getReviewList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewMgmtApiRequest"}}],"responses":{"200":{"description":"Search Product Review List Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseReviewMgmtApiResponse"}}}},"900":{"description":"Search Product Review List Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Search Product Review Detail Information

> \## Function Description\
> \* Searches product review detail information.\
> \---\
> \## Detailed Description\
> \* Searches product review detail information.\
> \* Called when the review content is clicked in the product review list grid.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"ResponseReviewDetailApiResponse":{"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/ReviewDetailApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ReviewDetailApiResponse":{"type":"object","description":"Review Detail Response DTO","properties":{"revNo":{"type":"string","description":"Review No."},"goodsNo":{"type":"string","description":"Product No."},"goodsNm":{"type":"string","description":"Product Name"},"loginId":{"type":"string","description":"Member ID"},"ordNo":{"type":"string","description":"Order No."},"revWrtDtm":{"type":"string","format":"date-time","description":"Review Creation Date/Time"},"revTypCdNm":{"type":"string","description":"Review Type Code Name"},"revGbCdNm":{"type":"string","description":"Review Classification Code Name"},"hlpfulCnt":{"type":"string","description":"Helpful Count"},"replyCnt":{"type":"string","description":"Comment Count"},"revDclCnt":{"type":"string","description":"Review Report Count"},"revScrVal":{"type":"string","description":"Review Rating"},"stfd1Yn":{"type":"string","description":"Satisfaction 1 Status"},"stfd2Yn":{"type":"string","description":"Satisfaction 2 Status"},"stfd3Yn":{"type":"string","description":"Satisfaction Level 3 Status"},"revDispStatCd":{"type":"string","description":"Review Display Status Code"},"dispProcmnId":{"type":"string","description":"Display Processor ID"},"dispProcDtm":{"type":"string","format":"date-time","description":"Display Processing Date/Time"},"contDispStatCd":{"type":"string","description":"Content Display Status Code"},"revCont":{"type":"string","description":"Review Content"},"entrNo":{"type":"string","description":"Vendor No."},"siteNm":{"type":"string","description":"Site Name"},"replySeq":{"type":"string","description":"Comment Sequence No."},"wrtmnGbCdNm":{"type":"string","description":"Author Type Code Name (PR037)"},"wrtmnId":{"type":"string","description":"Author ID"},"replyCont":{"type":"string","description":"Comment Content"},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022)"},"replySeqDispStatCdNm":{"type":"string","description":"Comment Display Status Code Name"},"totalCount":{"type":"integer","format":"int32","description":"Total Count"}}},"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/reviewMgmtApi/getReviewInfo":{"get":{"tags":["Product Review Management"],"summary":"Search Product Review Detail Information","description":"## Function Description\n* Searches product review detail information.\n---\n## Detailed Description\n* Searches product review detail information.\n* Called when the review content is clicked in the product review list grid.\n","operationId":"getReviewInfo","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}],"responses":{"200":{"description":"Search Product Review Detail Information Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseReviewDetailApiResponse"}}}},"900":{"description":"Search Product Review Detail Information Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Search Product Review Answer List by Evaluation Item

> \## Function Description\
> \* Searches the product review answer list by evaluation item.\
> \---\
> \## Detailed Description\
> \* Searches the answer list by evaluation item for the product review. Called from the product review detail popup.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"ResponseListReviewEvaluationApiResponse":{"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/ReviewEvaluationApiResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ReviewEvaluationApiResponse":{"type":"object","description":"Review Rating API Response","properties":{"revNo":{"type":"string","description":"Review No."},"evltItemNo":{"type":"string","description":"Evaluation Item No."},"evltValNo":{"type":"string","description":"Evaluation Value No."},"evltItemNm":{"type":"string","description":"Evaluation Item Name"},"evltVal":{"type":"string","description":"Evaluation Value"},"ansCont":{"type":"string","description":"Answer Details"},"stdCtgNo":{"type":"string","description":"Standard Category No."}}},"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/reviewMgmtApi/getReviewEvaluationList":{"get":{"tags":["Product Review Management"],"summary":"Search Product Review Answer List by Evaluation Item","description":"## Function Description\n* Searches the product review answer list by evaluation item.\n---\n## Detailed Description\n* Searches the answer list by evaluation item for the product review. Called from the product review detail popup.\n","operationId":"getReviewEvaluationList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}],"responses":{"200":{"description":"Search Product Review Answer List by Evaluation Item Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListReviewEvaluationApiResponse"}}}},"900":{"description":"Search Product Review Answer List by Evaluation Item Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Search Product Review Report List

> \## Function Description\
> \* Searches the product review report list.\
> \--\
> \## Detailed Description\
> \* Searches the product review report list.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"ResponseRealGridListResponsePrGoodsRevDclInfoDto":{"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/RealGridListResponsePrGoodsRevDclInfoDto","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponsePrGoodsRevDclInfoDto":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/PrGoodsRevDclInfoDto"}}}},"PrGoodsRevDclInfoDto":{"type":"object","description":"Review Report List Inquiry DTO","properties":{"goodsRevDclSeq":{"type":"string","description":"Product Review Report Sequence No."},"revNo":{"type":"string","description":"Review No."},"revDclTypCd":{"type":"string","description":"Review Report Type Code (PR067)"},"revDclEtcCaus":{"type":"string","description":"Other Review Report Reason"},"revDclTypNm":{"type":"string","description":"Review Report Type Name"},"revDclmnId":{"type":"string","description":"Review Reporter ID"},"revWrtmnBlckofYn":{"type":"string","description":"Review Author Block Status"},"totalCount":{"type":"integer","format":"int32","description":"Total Count"}}},"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/reviewMgmtApi/getReviewDeclarationList":{"get":{"tags":["Product Review Management"],"summary":"Search Product Review Report List","description":"## Function Description\n* Searches the product review report list.\n--\n## Detailed Description\n* Searches the product review report list.\n","operationId":"getReviewDeclarationList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}],"responses":{"200":{"description":"Search Product Review Report List Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponsePrGoodsRevDclInfoDto"}}}},"900":{"description":"Search Product Review Report List Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Search Product Review Attached Video List

> \## Function Description\
> \* Searches the attached video list of a product review.\
> \---\
> \## Detailed Description\
> \* Searches the list of videos among the files attached to the product review. Called from the product review detail popup.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"ResponseListReviewAttachedFileApiResponse":{"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/ReviewAttachedFileApiResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ReviewAttachedFileApiResponse":{"type":"object","description":"Review Attachment API Response","properties":{"revNo":{"type":"string","description":"Review No."},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"cmtSerialNo":{"type":"string","description":"Content Serial No."},"contFilePathNm":{"type":"string","description":"Content File Path"},"contFileNm":{"type":"string","description":"Content File Name"}}},"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/reviewMgmtApi/getReviewAttachedFileOfVideoList":{"get":{"tags":["Product Review Management"],"summary":"Search Product Review Attached Video List","description":"## Function Description\n* Searches the attached video list of a product review.\n---\n## Detailed Description\n* Searches the list of videos among the files attached to the product review. Called from the product review detail popup.\n","operationId":"getReviewAttachedFileOfVideoList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}],"responses":{"200":{"description":"Search Product Review Attached Video List Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListReviewAttachedFileApiResponse"}}}},"900":{"description":"Search Product Review Attached Video List Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Search Product Review Attached Image List

> \## Function Description\
> \* Searches the attached image list of a product review.\
> \---\
> \## Detailed Description\
> \* Searches the list of images among the files attached to the product review. Called from the product review detail popup.<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":{"ReviewDetailApiRequest":{"type":"object","description":"Product Review Detail Request DTO","properties":{"revNo":{"type":"string","description":"Review No."},"revDispStatCd":{"type":"string","description":"Review Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"contDispStatCd":{"type":"string","description":"Content Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replySeqList":{"type":"array","description":"Comment Sequence No. List","items":{"type":"string"}},"replySeqDispStatCd":{"type":"string","description":"Comment Display Status Code (PR022) 10: Not Displayed, 20: Displayed, 30: Display Not Allowed"},"replyCont":{"type":"string","description":"Comment Content"},"imageServerHost":{"type":"string","description":"Image Server Address"},"videoServerHost":{"type":"string","description":"Video Server Address"},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"limit":{"type":"integer","format":"int32","description":"Content Count Limit"}}},"ResponseListReviewAttachedFileApiResponse":{"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/ReviewAttachedFileApiResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ReviewAttachedFileApiResponse":{"type":"object","description":"Review Attachment API Response","properties":{"revNo":{"type":"string","description":"Review No."},"revGbCd":{"type":"string","description":"Review Type Code (PR021) 10: Text, 20: Photo, 30: Video, 40: Photo/Video"},"cmtSerialNo":{"type":"string","description":"Content Serial No."},"contFilePathNm":{"type":"string","description":"Content File Path"},"contFileNm":{"type":"string","description":"Content File Name"}}},"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/reviewMgmtApi/getReviewAttachedFileOfPhotoList":{"get":{"tags":["Product Review Management"],"summary":"Search Product Review Attached Image List","description":"## Function Description\n* Searches the attached image list of a product review.\n---\n## Detailed Description\n* Searches the list of images among the files attached to the product review. Called from the product review detail popup.\n","operationId":"getReviewAttachedFileOfPhotoList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewDetailApiRequest"}}],"responses":{"200":{"description":"Search Product Review Attached Image List Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListReviewAttachedFileApiResponse"}}}},"900":{"description":"Search Product Review Attached Image List Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## Search Product Review List for Product Review Banner

> \## Function Description\
> \* An API that searches the product review list for adding to a product review banner.\
> \---\
> \## Detailed Description\
> \* Access path: \[BO] Display -> Display Link Management -> Display Link Information Management -> Select Store -> Select Template -> Select General Corner -> Corner Detail Popup -> Select Set -> Product Review Banner -> Add Product Review\
> \
> \* Searches the product review list in the product review popup that is called when "Add Product Review" is clicked on the product review banner.\
> &#x20;   \* Required values: review registration start date, review registration end date<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":{"ReviewMgmtApiRequest":{"type":"object","description":"Review Management API Request DTO","properties":{"revWrtStartDtm":{"type":"string","format":"date-time","description":"Review Registration Start Date"},"revWrtEndDtm":{"type":"string","format":"date-time","description":"Review Registration End Date"},"revGbCd":{"type":"string","description":"Review Type Code"},"revDispStatCd":{"type":"string","description":"Review Display Status Code"},"goodsNm":{"type":"string","description":"Product Name"},"loginId":{"type":"string","description":"Member ID"},"mbrNm":{"type":"string","description":"Member Name"},"wrtrIsUserYn":{"type":"string","description":"My Comment Status"},"revDclYn":{"type":"string","description":"Review Report Status"},"entrNo":{"type":"string","description":"Vendor No."},"revScrValList":{"type":"array","description":"Rating","items":{"type":"string"}},"revWrtDtmAll":{"type":"boolean","description":"Entire Writing Date Status"},"ordNo":{"type":"string","description":"Order No."},"hlpfulYn":{"type":"string","description":"Recommendation Status"},"revNo":{"type":"string","description":"Review No."},"revNoList":{"type":"array","description":"Review No. List","items":{"type":"string"}},"includePriceYn":{"type":"string","description":"Selling Price Inclusion Status"},"reviewImgYn":{"type":"string","description":"Review Content Inclusion Status"},"saleStatCdArr":{"type":"array","description":"Product Sales Status List","items":{"type":"string"}},"brandNm":{"type":"string","description":"Brand Name"},"mdId":{"type":"string","description":"MD in Charge"},"revScrVal":{"type":"number","format":"float","description":"Review Score"},"goodsNoOption":{"type":"string","description":"Product No. Option"},"goodsNoArray":{"type":"array","description":"Product No. List Array","items":{"type":"string"}},"goodsNoFrom":{"type":"string","description":"Product No. From Condition"},"goodsNoTo":{"type":"string","description":"Product No. To Condition"},"goodsNo":{"type":"string","description":"Product No."},"condxMbrOpt":{"type":"string","description":"Search Type"},"condxMbrValue":{"type":"string","description":"Input Value"}}},"ReviewMgmtApiResponse":{"type":"object","description":"Review Management Response DTO","properties":{"totalCount":{"type":"integer","format":"int32","description":"Total Count"},"siteNm":{"type":"string","description":"Site Name"},"goodsNo":{"type":"string","description":"Product No."},"goodsNm":{"type":"string","description":"Product Name"},"revScrVal":{"type":"number","format":"float","description":"Review Rating"},"revNo":{"type":"string","description":"Review No."},"revCont":{"type":"string","description":"Review Content"},"revGbCd":{"type":"string","description":"Review Type Code"},"revGbCdNm":{"type":"string","description":"Review Classification Code Name"},"revTypCd":{"type":"string","description":"Review Type Code"},"revTypCdNm":{"type":"string","description":"Review Type Code Name"},"loginId":{"type":"string","description":"Member ID"},"revWrtDtm":{"type":"string","format":"date-time","description":"Review Creation Date/Time"},"ordNo":{"type":"string","description":"Order No."},"replyCnt":{"type":"integer","format":"int32","description":"Comment Count"},"hlpfulCnt":{"type":"integer","format":"int32","description":"Helpful Count"},"dclCnt":{"type":"integer","format":"int32","description":"Report Count"},"revDispStatCd":{"type":"string","description":"Review Display Status Code"},"revDispStatCdNm":{"type":"string","description":"Review Display Status Code Name"},"entrNm":{"type":"string","description":"Partner Name"},"dispProcmnId":{"type":"string","description":"Display Processor ID"},"dispProcDtm":{"type":"string","format":"date-time","description":"Display Processing Date/Time"},"saleStatCd":{"type":"string","description":"Product Status Code"},"saleStatNm":{"type":"string","description":"Product Status Name"},"mdId":{"type":"string","description":"MD in Charge"},"mdNm":{"type":"string","description":"MD in Charge Name"},"revTotCnt":{"type":"string","description":"Review Count"},"salePrc":{"type":"number","description":"Selling Price"},"contRevGbCd":{"type":"string","description":"Content Type Code (PR021)"},"contFilePathNm":{"type":"string","description":"Content File Path"},"contFileNm":{"type":"string","description":"Content File Name"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/reviewMgmtApi/getDisplayGoodsReviewList":{"get":{"tags":["Product Review Management"],"summary":"Search Product Review List for Product Review Banner","description":"## Function Description\n* An API that searches the product review list for adding to a product review banner.\n---\n## Detailed Description\n* Access path: [BO] Display -> Display Link Management -> Display Link Information Management -> Select Store -> Select Template -> Select General Corner -> Corner Detail Popup -> Select Set -> Product Review Banner -> Add Product Review\n\n* Searches the product review list in the product review popup that is called when \"Add Product Review\" is clicked on the product review banner.\n    * Required values: review registration start date, review registration end date\n","operationId":"getDisplayGoodsReviewList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ReviewMgmtApiRequest"}},{"name":"revWrtStartDtm","in":"query","description":"Review Registration Start Date","required":true,"schema":{"type":"localDate"}},{"name":"revWrtEndDtm","in":"query","description":"Review Registration End Date","required":true,"schema":{"type":"localDate"}},{"name":"revNo","in":"query","description":"Product Review No.","schema":{"type":"String"}},{"name":"entrNo","in":"query","description":"Vendor No.","schema":{"type":"String"}},{"name":"condxMbrOpt","in":"query","description":"Search Type","schema":{"type":"string"}},{"name":"condxMbrValue","in":"query","description":"Input Value","schema":{"type":"string"}},{"name":"goodsNo","in":"query","description":"Product No.","schema":{"type":"String"}},{"name":"goodsNm","in":"query","description":"Product Name","schema":{"type":"String"}},{"name":"mbrNm","in":"query","description":"Member Name","schema":{"type":"String"}},{"name":"brandNm","in":"query","description":"Brand Name","schema":{"type":"String"}},{"name":"loginId","in":"query","description":"Member ID","schema":{"type":"String"}},{"name":"mdId","in":"query","description":"MD in Charge","schema":{"type":"String"}},{"name":"revScrVal","in":"query","description":"Review Score","schema":{"type":"Float"}}],"responses":{"200":{"description":"Search Product Review List for Product Review Banner Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ReviewMgmtApiResponse"}}}},"400":{"description":"Search Product Review List for Product Review Banner Failure","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```
