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

# 이벤트 댓글 관리

## 이벤트 댓글 블라인드 처리/해제

> \## 기능 설명\
> \* 이벤트 댓글 블라인드 처리/해제를 합니다.\
> \---\
> \## 상세 설명\
> \* \*\*블라인드 여부(pblYn) , 게시글번호(bbcNo) , 이벤트번호(evtNo)\*\*는 필수로 있어야 합니다.<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":{"EvtReplyMgmtRequest":{"type":"object","properties":{"siteNo":{"type":"string","description":"사이트번호"},"bbcNo":{"type":"string","description":"게시글번호"},"evtNo":{"type":"string","description":"이벤트번호"},"evtNm":{"type":"string","description":"이벤트명"},"mbrNo":{"type":"string","description":"회원번호"},"bbcCont":{"type":"string","description":"게시글내용"},"startDate":{"type":"string","format":"date","description":"응모기간 시작일자"},"endDate":{"type":"string","format":"date","description":"응모기간 종료일자"},"evtNoList":{"type":"array","description":"이벤트번호 LIST","items":{"type":"string"}},"blindDataList":{"type":"array","description":"블라인드 처리 데이터 LIST","items":{"$ref":"#/components/schemas/CcEvtBbInfo"}},"periodGb":{"type":"string","description":"조회기간 선택"},"blindYn":{"type":"string","description":"블라인드 YN"},"aempNm":{"type":"string","description":"블라드 최종처리자명"},"aempId":{"type":"string","description":"블라드 최종처리자ID"},"blndProcmnId":{"type":"string","description":"블라인드 최종처리자"},"blndProcDtm":{"type":"string","format":"date-time","description":"블라인드 최종처리일시"},"dateSelect":{"type":"string","description":"날짜선택옵션"}}},"CcEvtBbInfo":{"type":"object","properties":{"bbcNo":{"type":"string","description":"게시글번호"},"evtNo":{"type":"string","description":"이벤트번호"},"evtTmplRelNo":{"type":"string","description":"이벤트템플릿관계번호"},"evtBbGbCd":{"type":"string","description":"이벤트게시판구코드(EV023)","enum":["BOARD","ONE_LINE","ATTENDANCE"]},"bbcTitleNm":{"type":"string","description":"게시글제목명"},"bbcCont":{"type":"string","description":"게시글내용"},"wrtmnNm":{"type":"string","description":"작성자명"},"wrtmnEmailAddr":{"type":"string","description":"작성자이메일주소"},"mbrNo":{"type":"string","description":"회원번호"},"goodsNo":{"type":"string","description":"상품번호"},"dispSeq":{"type":"integer","format":"int32","description":"전시순서"},"qryCnt":{"type":"integer","format":"int32","description":"조회수"},"recomCnt":{"type":"integer","format":"int32","description":"추천수"},"dispYn":{"type":"string","description":"전시여부"},"pblYn":{"type":"string","description":"공개여부"},"delYn":{"type":"string","description":"삭제여부"},"regDt":{"type":"string","description":"등록일자"},"blndProcmnId":{"type":"string","description":"블라인드 최종처리자"}}},"Response":{"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":{"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"}}}}},"paths":{"/v1/marketing/eventReplyMgmt/saveEventReplyMgmtBlindProc":{"post":{"tags":["이벤트 댓글 관리"],"summary":"이벤트 댓글 블라인드 처리/해제","description":"## 기능 설명\n* 이벤트 댓글 블라인드 처리/해제를 합니다.\n---\n## 상세 설명\n* **블라인드 여부(pblYn) , 게시글번호(bbcNo) , 이벤트번호(evtNo)**는 필수로 있어야 합니다.\n","operationId":"saveEventReplyMgmtBlindProc","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvtReplyMgmtRequest"}}},"required":true},"responses":{"200":{"description":"댓글 블라인드 처리/해제 성공","content":{"*/*":{"schema":{"type":"string"}}}},"900":{"description":"댓글 블라인드 처리/해제 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 이벤트 댓글 조회 목록 조회

> \## 기능 설명\
> \* 이벤트 댓글 조회 목록을 조회합니다.\
> \---\
> \## 상세 설명\
> \* 필수값 없습니다.\
> \* \*\*조회기간(startDate/EndDate) , 사이트번호(siteNo) , 이벤트번호/명(evtNo) , 댓글내용(bbcCont) , 블라인드 여부(blindYn) , 회원번호(mbrNo) , 블라인드 수정 처리자(aempId)\*\*\
> \* 위 파라미터로 넘겨받아 조건에 해당하는 데이터를 조회 합니다.\
> \---\
> \## 수정번호\
> \* Release v2.00\_250428: 날짜조회 쿼리 변경 - BO 선택 옵션 (3, 7, 30, 전체) 추가되어 전체인 경우 날짜 조건 제외, 응모번호/응모일시 추가<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":{"RealGridListResponseEvtReplyMgmtResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/EvtReplyMgmtResponse"}}}},"EvtReplyMgmtResponse":{"type":"object","properties":{"bbcNo":{"type":"string","description":"게시글번호"},"evtNo":{"type":"string","description":"이벤트번호"},"evtNm":{"type":"string","description":"이벤트명"},"evtTmplRelNo":{"type":"string","description":"이벤트템플릿관계번호"},"evtBbGbCd":{"type":"string","description":"이벤트게시판구코드(EV023)","enum":["BOARD","ONE_LINE","ATTENDANCE"]},"bbcTitleNm":{"type":"string","description":"게시글제목명"},"bbcCont":{"type":"string","description":"게시글내용"},"wrtmnNm":{"type":"string","description":"작성자명"},"wrtmnEmailAddr":{"type":"string","description":"작성자이메일주소"},"mbrNo":{"type":"string","description":"회원번호"},"goodsNo":{"type":"string","description":"상품번호"},"dispSeq":{"type":"integer","format":"int32","description":"전시순서"},"qryCnt":{"type":"integer","format":"int32","description":"조회수"},"recomCnt":{"type":"integer","format":"int32","description":"추천수"},"dispYn":{"type":"string","description":"전시여부"},"pblYn":{"type":"string","description":"공개여부"},"delYn":{"type":"string","description":"삭제여부"},"regDt":{"type":"string","description":"등록일자"},"mbrNm":{"type":"string","description":"회원명"},"loginId":{"type":"string","description":"회원ID"},"evtUrlAddr":{"type":"string","description":"이벤트 URL 주소"},"blndProcmnId":{"type":"string","description":"블라인드 최종처리자"},"blndProcDtm":{"type":"string","format":"date-time","description":"블라인드 최종처리일시"},"siteNm":{"type":"string","description":"사이트명"},"trgmnSeq":{"type":"string","description":"응모번호"},"sbscAplyDtm":{"type":"string","format":"date-time","description":"응모일시"}}},"Response":{"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":{"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"}}}}},"paths":{"/v2/marketing/eventReplyMgmt/getEventReplyMgmtList":{"get":{"tags":["이벤트 댓글 관리"],"summary":"이벤트 댓글 조회 목록 조회","description":"## 기능 설명\n* 이벤트 댓글 조회 목록을 조회합니다.\n---\n## 상세 설명\n* 필수값 없습니다.\n* **조회기간(startDate/EndDate) , 사이트번호(siteNo) , 이벤트번호/명(evtNo) , 댓글내용(bbcCont) , 블라인드 여부(blindYn) , 회원번호(mbrNo) , 블라인드 수정 처리자(aempId)**\n* 위 파라미터로 넘겨받아 조건에 해당하는 데이터를 조회 합니다.\n---\n## 수정번호\n* Release v2.00_250428: 날짜조회 쿼리 변경 - BO 선택 옵션 (3, 7, 30, 전체) 추가되어 전체인 경우 날짜 조건 제외, 응모번호/응모일시 추가\n","operationId":"getEventReplyMgmtList","parameters":[{"name":"evtNo","in":"query","description":"이벤트번호","schema":{"type":"string"}},{"name":"bbcCont","in":"query","description":"댓글내용","schema":{"type":"string"}},{"name":"blindYn","in":"query","description":"블라인드 여부","schema":{"type":"string"}},{"name":"mbrNo","in":"query","description":"회원번호","schema":{"type":"string"}},{"name":"aempId","in":"query","description":"블라인드 수정 처리자","schema":{"type":"string"}},{"name":"startDate","in":"query","description":"시작날짜","schema":{"type":"LocalDate"}},{"name":"endDate","in":"query","description":"끝날짜","schema":{"type":"LocalDate"}},{"name":"periodGb","in":"query","description":"조회기간선택","schema":{"type":"string"}},{"name":"siteNo","in":"query","description":"사이트번호","schema":{"type":"string"}},{"name":"pageIdx","in":"query","description":"현재 페이지","required":true,"schema":{"type":"string"}},{"name":"rowsPerPage","in":"query","description":"페이지 당 row","required":true,"schema":{"type":"string"}},{"name":"dateSelect","in":"query","description":"날짜선택옵션","schema":{"type":"string"}}],"responses":{"200":{"description":"댓글 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RealGridListResponseEvtReplyMgmtResponse"}}}},"900":{"description":"댓글 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```
