# 팝업 정보 관리

## 팝업 정보 목록 조회

> \## 기능설명\
> \* 팝업 정보 목록을 조회하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 팝업기간,사이트번호,전시매체,채널번호/명 의 조회조건에 따라 팝업 정보를 조회합니다.\
> \* 팝업 정보 목록은 사이트번호,전시시작날짜 오름차순으로 노출됩니다.\
> \---\
> \## 수정번호\
> \`\`\`Release v1.05\_231204\`\`\` : 스프린트5 PO1 결함/개선 - 팝업 조회조건 쿼리 수정<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":{"PrSitePopupInfo":{"type":"object","description":"사이트팝업정보","properties":{"siteNo":{"type":"string","description":"사이트번호"},"langCd":{"type":"string","description":"언어코드"},"popupNo":{"type":"string","description":"팝업번호"},"popupNm":{"type":"string","description":"팝업명"},"popupDispStrDtm":{"type":"string","format":"date-time","description":"팝업전시시작일시"},"popupDispEndDtm":{"type":"string","format":"date-time","description":"팝업전시종료일시"},"popupTypCd":{"type":"string","description":"팝업유형코드(DP014)"},"popupTypCdNm":{"type":"string","description":"팝업유형코드명(DP014)"},"prioRnk":{"type":"integer","format":"int32","description":"우선순위"},"dispMediaCd":{"type":"string","description":"전시매체코드"},"popupSzWdt":{"type":"integer","format":"int32","description":"팝업사이즈넓이"},"popupSzHigh":{"type":"integer","format":"int32","description":"팝업사이즈높이"},"popupLocLeft":{"type":"integer","format":"int32","description":"팝업위치 LEFT"},"popupLocTop":{"type":"integer","format":"int32","description":"팝업위치 TOP"},"prtTypCd":{"type":"string","description":"출력유형코드(DP017)"},"popupImgPathNm":{"type":"string","description":"팝업이미지경로명"},"popupImgFileNm":{"type":"string","description":"팝업이미지파일명"},"aosYn":{"type":"string","description":"AOS 전시여부"},"iosYn":{"type":"string","description":"IOS 전시여부"},"popupLnk":{"type":"string","description":"팝업링크"},"popupCont":{"type":"string","description":"팝업내용"},"useYn":{"type":"string","description":"사용여부"},"popContGbCd":{"type":"string","description":"팝업내용구분코드(DP029)"},"chlNo":{"type":"string","description":"채널번호"},"popupTgtScrnListApi":{"type":"array","description":"전시코너 API 전달용","items":{"type":"string"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/sitePopupMgmt":{"get":{"tags":["팝업 정보 관리"],"summary":"팝업 정보 목록 조회","description":"## 기능설명\n* 팝업 정보 목록을 조회하는 API 입니다.\n---\n## 상세설명\n* 팝업기간,사이트번호,전시매체,채널번호/명 의 조회조건에 따라 팝업 정보를 조회합니다.\n* 팝업 정보 목록은 사이트번호,전시시작날짜 오름차순으로 노출됩니다.\n---\n## 수정번호\n```Release v1.05_231204``` : 스프린트5 PO1 결함/개선 - 팝업 조회조건 쿼리 수정\n","operationId":"getSitePopupList","parameters":[{"name":"siteNo","in":"query","description":"사이트번호","schema":{"type":"string"}},{"name":"dispMediaCd","in":"query","description":"전시매체코드","schema":{"type":"string"}},{"name":"startDate","in":"query","description":"시작날짜","schema":{"type":"string"}},{"name":"endDate","in":"query","description":"종료날짜","schema":{"type":"string"}},{"name":"chlNo","in":"query","description":"채널번호","schema":{"type":"string"}},{"name":"chlNm","in":"query","description":"채널명","schema":{"type":"string"}},{"name":"rowsPerPage","in":"query","description":"페이지 당 row","required":true,"schema":{"type":"string"}},{"name":"pageIdx","in":"query","description":"현재 페이지","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"팝업 정보 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrSitePopupInfo"}}}},"900":{"description":"팝업 정보 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
````

## 팝업 상세내용 등록/수정

> \## 기능설명\
> \* 팝업 상세내용을 등록 및 수정하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 전시 매체가 PC일 경우 팝업 위치, 넓이와 HTML를 등록합니다.\
> \* 전시 매체가 MO일 경우 출력 유형, 이미지형, HTML을 등록합니다.\
> \
> \* 입력 파라미터( \* : 필수)\
> &#x20;   \* 필요 값 : popupNo, popupNm, siteNo, popupDispStrDtm, popupDispEndDtm, popupTypCd, prioRnk, dispMediaCd, popupSzWdt, popupSzHigh, popupLocLeft, popupLocTop\
> &#x20;   , prtTypCd, popupImgPathNm, popupImgFileNm, popupLnk, popupCont, langCd, popContGbCd, popupTgtScrnList, useYn, aosYn, iosYn<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":{"PrSitePopupInfo":{"type":"object","description":"사이트팝업정보","properties":{"siteNo":{"type":"string","description":"사이트번호"},"langCd":{"type":"string","description":"언어코드"},"popupNo":{"type":"string","description":"팝업번호"},"popupNm":{"type":"string","description":"팝업명"},"popupDispStrDtm":{"type":"string","format":"date-time","description":"팝업전시시작일시"},"popupDispEndDtm":{"type":"string","format":"date-time","description":"팝업전시종료일시"},"popupTypCd":{"type":"string","description":"팝업유형코드(DP014)"},"popupTypCdNm":{"type":"string","description":"팝업유형코드명(DP014)"},"prioRnk":{"type":"integer","format":"int32","description":"우선순위"},"dispMediaCd":{"type":"string","description":"전시매체코드"},"popupSzWdt":{"type":"integer","format":"int32","description":"팝업사이즈넓이"},"popupSzHigh":{"type":"integer","format":"int32","description":"팝업사이즈높이"},"popupLocLeft":{"type":"integer","format":"int32","description":"팝업위치 LEFT"},"popupLocTop":{"type":"integer","format":"int32","description":"팝업위치 TOP"},"prtTypCd":{"type":"string","description":"출력유형코드(DP017)"},"popupImgPathNm":{"type":"string","description":"팝업이미지경로명"},"popupImgFileNm":{"type":"string","description":"팝업이미지파일명"},"aosYn":{"type":"string","description":"AOS 전시여부"},"iosYn":{"type":"string","description":"IOS 전시여부"},"popupLnk":{"type":"string","description":"팝업링크"},"popupCont":{"type":"string","description":"팝업내용"},"useYn":{"type":"string","description":"사용여부"},"popContGbCd":{"type":"string","description":"팝업내용구분코드(DP029)"},"chlNo":{"type":"string","description":"채널번호"},"popupTgtScrnListApi":{"type":"array","description":"전시코너 API 전달용","items":{"type":"string"}}}},"RealGridCUDRequestPrSitePopupChlAplyInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrSitePopupChlAplyInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrSitePopupChlAplyInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrSitePopupChlAplyInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrSitePopupChlAplyInfo"}}}},"PrSitePopupChlAplyInfo":{"type":"object","properties":{"popupNo":{"type":"string","description":"팝업번호"},"chlNo":{"type":"string","description":"채널번호"},"chlNm":{"type":"string","description":"채널명"},"linkInfo":{"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":{"/v2/display/sitePopupMgmt":{"post":{"tags":["팝업 정보 관리"],"summary":"팝업 상세내용 등록/수정","description":"## 기능설명\n* 팝업 상세내용을 등록 및 수정하는 API 입니다.\n---\n## 상세설명\n* 전시 매체가 PC일 경우 팝업 위치, 넓이와 HTML를 등록합니다.\n* 전시 매체가 MO일 경우 출력 유형, 이미지형, HTML을 등록합니다.\n\n* 입력 파라미터( * : 필수)\n    * 필요 값 : popupNo, popupNm, siteNo, popupDispStrDtm, popupDispEndDtm, popupTypCd, prioRnk, dispMediaCd, popupSzWdt, popupSzHigh, popupLocLeft, popupLocTop\n    , prtTypCd, popupImgPathNm, popupImgFileNm, popupLnk, popupCont, langCd, popContGbCd, popupTgtScrnList, useYn, aosYn, iosYn\n","operationId":"savePrSitePopupInfo","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"file":{"type":"string","format":"binary"},"prSitePopupInfo":{"$ref":"#/components/schemas/PrSitePopupInfo"},"prSitePopupChlAplyInfoList":{"$ref":"#/components/schemas/RealGridCUDRequestPrSitePopupChlAplyInfo"}},"required":["prSitePopupChlAplyInfoList","prSitePopupInfo"]}}}},"responses":{"200":{"description":"팝업정보 등록 및 수정 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"팝업정보 등록 및 수정 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 팝업 관리 목록 삭제

> \## 기능설명\
> \* 팝업 정보를 삭제하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 팝업번호를 입력받아 해당 팝업정보를 삭제합니다.\
> \* 팝업번호는 필수값입니다.<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":{"PrSitePopupInfo":{"type":"object","description":"사이트팝업정보","properties":{"siteNo":{"type":"string","description":"사이트번호"},"langCd":{"type":"string","description":"언어코드"},"popupNo":{"type":"string","description":"팝업번호"},"popupNm":{"type":"string","description":"팝업명"},"popupDispStrDtm":{"type":"string","format":"date-time","description":"팝업전시시작일시"},"popupDispEndDtm":{"type":"string","format":"date-time","description":"팝업전시종료일시"},"popupTypCd":{"type":"string","description":"팝업유형코드(DP014)"},"popupTypCdNm":{"type":"string","description":"팝업유형코드명(DP014)"},"prioRnk":{"type":"integer","format":"int32","description":"우선순위"},"dispMediaCd":{"type":"string","description":"전시매체코드"},"popupSzWdt":{"type":"integer","format":"int32","description":"팝업사이즈넓이"},"popupSzHigh":{"type":"integer","format":"int32","description":"팝업사이즈높이"},"popupLocLeft":{"type":"integer","format":"int32","description":"팝업위치 LEFT"},"popupLocTop":{"type":"integer","format":"int32","description":"팝업위치 TOP"},"prtTypCd":{"type":"string","description":"출력유형코드(DP017)"},"popupImgPathNm":{"type":"string","description":"팝업이미지경로명"},"popupImgFileNm":{"type":"string","description":"팝업이미지파일명"},"aosYn":{"type":"string","description":"AOS 전시여부"},"iosYn":{"type":"string","description":"IOS 전시여부"},"popupLnk":{"type":"string","description":"팝업링크"},"popupCont":{"type":"string","description":"팝업내용"},"useYn":{"type":"string","description":"사용여부"},"popContGbCd":{"type":"string","description":"팝업내용구분코드(DP029)"},"chlNo":{"type":"string","description":"채널번호"},"popupTgtScrnListApi":{"type":"array","description":"전시코너 API 전달용","items":{"type":"string"}}}},"ResponseString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/sitePopupMgmt":{"delete":{"tags":["팝업 정보 관리"],"summary":"팝업 관리 목록 삭제","description":"## 기능설명\n* 팝업 정보를 삭제하는 API 입니다.\n---\n## 상세설명\n* 팝업번호를 입력받아 해당 팝업정보를 삭제합니다.\n* 팝업번호는 필수값입니다.\n","operationId":"deleteSitePopupMgmt","requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PrSitePopupInfo"}}}},"required":true},"responses":{"200":{"description":"팝업 정보 삭제 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"팝업 정보 삭제 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 팝업 다국어 내용 등록/수정

> \## 기능설명\
> \* 팝업 다국어 내용을 등록 및 수정하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 팝업 내용이 HTML 경우 다국어 HTML, 이미지일 경우 다국어 이미지를 등록한다.\
> \
> \* 입력 파라미터( \* : 필수)\
> &#x20;   \* 필요 값 : popupNo, popupNm, popupImgPathNm, popupImgFileNm, popupCont, langCd<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":{"PrSitePopupInfo":{"type":"object","description":"사이트팝업정보","properties":{"siteNo":{"type":"string","description":"사이트번호"},"langCd":{"type":"string","description":"언어코드"},"popupNo":{"type":"string","description":"팝업번호"},"popupNm":{"type":"string","description":"팝업명"},"popupDispStrDtm":{"type":"string","format":"date-time","description":"팝업전시시작일시"},"popupDispEndDtm":{"type":"string","format":"date-time","description":"팝업전시종료일시"},"popupTypCd":{"type":"string","description":"팝업유형코드(DP014)"},"popupTypCdNm":{"type":"string","description":"팝업유형코드명(DP014)"},"prioRnk":{"type":"integer","format":"int32","description":"우선순위"},"dispMediaCd":{"type":"string","description":"전시매체코드"},"popupSzWdt":{"type":"integer","format":"int32","description":"팝업사이즈넓이"},"popupSzHigh":{"type":"integer","format":"int32","description":"팝업사이즈높이"},"popupLocLeft":{"type":"integer","format":"int32","description":"팝업위치 LEFT"},"popupLocTop":{"type":"integer","format":"int32","description":"팝업위치 TOP"},"prtTypCd":{"type":"string","description":"출력유형코드(DP017)"},"popupImgPathNm":{"type":"string","description":"팝업이미지경로명"},"popupImgFileNm":{"type":"string","description":"팝업이미지파일명"},"aosYn":{"type":"string","description":"AOS 전시여부"},"iosYn":{"type":"string","description":"IOS 전시여부"},"popupLnk":{"type":"string","description":"팝업링크"},"popupCont":{"type":"string","description":"팝업내용"},"useYn":{"type":"string","description":"사용여부"},"popContGbCd":{"type":"string","description":"팝업내용구분코드(DP029)"},"chlNo":{"type":"string","description":"채널번호"},"popupTgtScrnListApi":{"type":"array","description":"전시코너 API 전달용","items":{"type":"string"}}}},"ResponseString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/sitePopupMgmt/multiLang":{"post":{"tags":["팝업 정보 관리"],"summary":"팝업 다국어 내용 등록/수정","description":"## 기능설명\n* 팝업 다국어 내용을 등록 및 수정하는 API 입니다.\n---\n## 상세설명\n* 팝업 내용이 HTML 경우 다국어 HTML, 이미지일 경우 다국어 이미지를 등록한다.\n\n* 입력 파라미터( * : 필수)\n    * 필요 값 : popupNo, popupNm, popupImgPathNm, popupImgFileNm, popupCont, langCd\n","operationId":"savePrSiteMultiLanguage","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"file":{"type":"string","format":"binary"},"prSitePopupInfo":{"$ref":"#/components/schemas/PrSitePopupInfo"}},"required":["prSitePopupInfo"]}}}},"responses":{"200":{"description":"팝업 다국어정보 등록 및 수정 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"팝업 다국어정보 등록 및 수정 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 팝업 상세정보 조회

> \## 기능설명\
> \* 팝업 상세정보를 조회하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 팝업번호로 해당 팝업 상세정보를 조회합니다.<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":{"PrSitePopupInfo":{"type":"object","description":"사이트팝업정보","properties":{"siteNo":{"type":"string","description":"사이트번호"},"langCd":{"type":"string","description":"언어코드"},"popupNo":{"type":"string","description":"팝업번호"},"popupNm":{"type":"string","description":"팝업명"},"popupDispStrDtm":{"type":"string","format":"date-time","description":"팝업전시시작일시"},"popupDispEndDtm":{"type":"string","format":"date-time","description":"팝업전시종료일시"},"popupTypCd":{"type":"string","description":"팝업유형코드(DP014)"},"popupTypCdNm":{"type":"string","description":"팝업유형코드명(DP014)"},"prioRnk":{"type":"integer","format":"int32","description":"우선순위"},"dispMediaCd":{"type":"string","description":"전시매체코드"},"popupSzWdt":{"type":"integer","format":"int32","description":"팝업사이즈넓이"},"popupSzHigh":{"type":"integer","format":"int32","description":"팝업사이즈높이"},"popupLocLeft":{"type":"integer","format":"int32","description":"팝업위치 LEFT"},"popupLocTop":{"type":"integer","format":"int32","description":"팝업위치 TOP"},"prtTypCd":{"type":"string","description":"출력유형코드(DP017)"},"popupImgPathNm":{"type":"string","description":"팝업이미지경로명"},"popupImgFileNm":{"type":"string","description":"팝업이미지파일명"},"aosYn":{"type":"string","description":"AOS 전시여부"},"iosYn":{"type":"string","description":"IOS 전시여부"},"popupLnk":{"type":"string","description":"팝업링크"},"popupCont":{"type":"string","description":"팝업내용"},"useYn":{"type":"string","description":"사용여부"},"popContGbCd":{"type":"string","description":"팝업내용구분코드(DP029)"},"chlNo":{"type":"string","description":"채널번호"},"popupTgtScrnListApi":{"type":"array","description":"전시코너 API 전달용","items":{"type":"string"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/sitePopupMgmt/{popupNo}":{"get":{"tags":["팝업 정보 관리"],"summary":"팝업 상세정보 조회","description":"## 기능설명\n* 팝업 상세정보를 조회하는 API 입니다.\n---\n## 상세설명\n* 팝업번호로 해당 팝업 상세정보를 조회합니다.\n","operationId":"getSitePopupDetail","parameters":[{"name":"popupNo","in":"query","description":"팝업번호","required":true,"schema":{"type":"string"}},{"name":"langCd","in":"query","description":"언어코드","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"팝업 상세정보 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrSitePopupInfo"}}}},"900":{"description":"팝업 상세정보 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 팝업 다국어 상세 정보 조회

> \## 기능설명\
> \* 팝업 다국어 상세정보를 조회하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 팝업번호로 해당 팝업 상세정보를 조회합니다.<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":{"PrSitePopupInfo":{"type":"object","description":"사이트팝업정보","properties":{"siteNo":{"type":"string","description":"사이트번호"},"langCd":{"type":"string","description":"언어코드"},"popupNo":{"type":"string","description":"팝업번호"},"popupNm":{"type":"string","description":"팝업명"},"popupDispStrDtm":{"type":"string","format":"date-time","description":"팝업전시시작일시"},"popupDispEndDtm":{"type":"string","format":"date-time","description":"팝업전시종료일시"},"popupTypCd":{"type":"string","description":"팝업유형코드(DP014)"},"popupTypCdNm":{"type":"string","description":"팝업유형코드명(DP014)"},"prioRnk":{"type":"integer","format":"int32","description":"우선순위"},"dispMediaCd":{"type":"string","description":"전시매체코드"},"popupSzWdt":{"type":"integer","format":"int32","description":"팝업사이즈넓이"},"popupSzHigh":{"type":"integer","format":"int32","description":"팝업사이즈높이"},"popupLocLeft":{"type":"integer","format":"int32","description":"팝업위치 LEFT"},"popupLocTop":{"type":"integer","format":"int32","description":"팝업위치 TOP"},"prtTypCd":{"type":"string","description":"출력유형코드(DP017)"},"popupImgPathNm":{"type":"string","description":"팝업이미지경로명"},"popupImgFileNm":{"type":"string","description":"팝업이미지파일명"},"aosYn":{"type":"string","description":"AOS 전시여부"},"iosYn":{"type":"string","description":"IOS 전시여부"},"popupLnk":{"type":"string","description":"팝업링크"},"popupCont":{"type":"string","description":"팝업내용"},"useYn":{"type":"string","description":"사용여부"},"popContGbCd":{"type":"string","description":"팝업내용구분코드(DP029)"},"chlNo":{"type":"string","description":"채널번호"},"popupTgtScrnListApi":{"type":"array","description":"전시코너 API 전달용","items":{"type":"string"}}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/sitePopupMgmt/multiLang/{popupNo}":{"get":{"tags":["팝업 정보 관리"],"summary":"팝업 다국어 상세 정보 조회","description":"## 기능설명\n* 팝업 다국어 상세정보를 조회하는 API 입니다.\n---\n## 상세설명\n* 팝업번호로 해당 팝업 상세정보를 조회합니다.\n","operationId":"getSitePopupDetailMl","parameters":[{"name":"popupNo","in":"query","description":"팝업번호","required":true,"schema":{"type":"string"}},{"name":"langCd","in":"query","description":"언어코드","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"팝업 다국어 정보 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrSitePopupInfo"}}}},"900":{"description":"팝업 다국어 정보 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 팝업 상세 - 채널적용정보 목록 조회

> \## 기능설명\
> \* 채널적용정보 목록을 조회하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 팝업번호에 해당하는 채널적용정보 목록을 조회합니다.\
> \---\
> \## 수정번호\
> \`\`\`Release v1.02\_231023\`\`\` : 스프린트2 PO1 결함/개선<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":{"PrSitePopupChlAplyInfo":{"type":"object","properties":{"popupNo":{"type":"string","description":"팝업번호"},"chlNo":{"type":"string","description":"채널번호"},"chlNm":{"type":"string","description":"채널명"},"linkInfo":{"type":"string","description":"연결정보"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v2/display/sitePopupMgmt/chlAplyInfo/{popupNo}":{"get":{"tags":["팝업 정보 관리"],"summary":"팝업 상세 - 채널적용정보 목록 조회","description":"## 기능설명\n* 채널적용정보 목록을 조회하는 API 입니다.\n---\n## 상세설명\n* 팝업번호에 해당하는 채널적용정보 목록을 조회합니다.\n---\n## 수정번호\n```Release v1.02_231023``` : 스프린트2 PO1 결함/개선\n","operationId":"getSitePopupChlAplyInfo","parameters":[{"name":"popupNo","in":"query","description":"팝업번호","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"채널적용정보 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PrSitePopupChlAplyInfo"}}}},"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/display-bo-api/undefined-5.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.
