> 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/popup-bo-api/undefined-12.md).

# 채널공통팝업

## 공통팝업 - 채널 정보 목록 조회

> \## 기능설명\
> \* 채널 정보 목록을 조회하는 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":{"CcChlBase":{"type":"object","description":"채널기본","properties":{"siteNo":{"type":"string","description":"사이트번호"},"chlNo":{"type":"string","description":"채널번호"},"chlNm":{"type":"string","description":"채널명"},"chlClssCd":{"type":"string","description":"채널분류코드(CH001) 10:직접, 20:이메일, 30:제휴"},"chlTypCd":{"type":"string","description":"채널유형코드(CH002) 01:URL직접입력, 02:즐겨찾기, 03:이메일, 04:가격비교, 05:기타제휴"},"aplyStrDt":{"type":"string","format":"date","description":"적용시작일자"},"aplyEndDt":{"type":"string","format":"date","description":"적용종료일자"},"entrNo":{"type":"string","description":"협력사번호"},"chlDesc":{"type":"string","description":"채널설명"},"delYn":{"type":"string","description":"삭제여부"},"argSelectType":{"type":"string","description":"선택구분(1:단일, N:다중)"},"argChlClssCd":{"type":"string"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/popup/channelMgmt/getChannelList":{"get":{"tags":["채널공통팝업"],"summary":"공통팝업 - 채널 정보 목록 조회","description":"## 기능설명\n* 채널 정보 목록을 조회하는 API 입니다.\n---\n## 상세설명\n* 채널번호,채널명,채널분류코드에 따라 채널 정보를 조회합니다.\n* 채널 정보 목록은 채널번호 오름차순으로 노출됩니다.\n","operationId":"getChannelList","parameters":[{"name":"chlNo","in":"query","description":"채널번호","schema":{"type":"String"}},{"name":"chlNm","in":"query","description":"채널명","schema":{"type":"string"}},{"name":"chlClssCd","in":"query","description":"채널분류코드","schema":{"type":"string"}}],"responses":{"200":{"description":"채널 정보 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CcChlBase"}}}},"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":{"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/popup/channelMgmt/getChannelListCount":{"get":{"tags":["채널공통팝업"],"summary":"공통팝업 - 채널 정보 목록 개수 조회","description":"## 기능설명\n* 채널 정보 개수를 조회하는 API 입니다.\n---\n## 상세설명\n* 채널번호,채널명,채널분류코드에 따라 채널 정보 개수를 조회합니다.\n","operationId":"getChannelListCount","parameters":[{"name":"chlNo","in":"query","description":"채널번호","schema":{"type":"String"}},{"name":"chlNm","in":"query","description":"채널명","schema":{"type":"string"}},{"name":"chlClssCd","in":"query","description":"채널분류코드","schema":{"type":"string"}}],"responses":{"200":{"description":"채널 정보 목록 조회 성공","content":{"*/*":{"schema":{"type":"integer","format":"int32"}}}},"900":{"description":"채널 정보 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```
