# 상담템플릿관리

## 상담템플릿관리 템플릿 수정

> \## 기능설명\
> \* 상담템플릿관리 상세화면에서 템플릿을 수정하는 기능 입니다.\
> \---\
> \## 상세설명\
> \* \[BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 > 템플릿 상세화면에서 저장 버튼 클릭 시 호출되는 기능 입니다.\
> \---\
> \## 코드정리\
> \* \`\`\`탭구분코드\`\`\`: common:공통, alone:개인<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":{"CsCnslTmplInfo":{"type":"object","description":"상담템플릿 등록/수정 요청 DTO","properties":{"typeCode":{"type":"string","description":"탭 구분(공통:common, 개인:alone)"},"cnslAempId":{"type":"string","description":"사용자ID"},"cnslTmplNo":{"type":"string","description":"상담템플릿번호"},"cnslGbCd":{"type":"string","description":"상담구분코드"},"cnslTypCd":{"type":"string","description":"상담유형코드"},"tmplNm":{"type":"string","description":"템플릿명"},"tmplCont":{"type":"string","description":"템플릿내용"},"useYn":{"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"}}},"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"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/updateCsCounselTemplateInfo":{"post":{"tags":["상담템플릿관리"],"summary":"상담템플릿관리 템플릿 수정","description":"## 기능설명\n* 상담템플릿관리 상세화면에서 템플릿을 수정하는 기능 입니다.\n---\n## 상세설명\n* [BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 > 템플릿 상세화면에서 저장 버튼 클릭 시 호출되는 기능 입니다.\n---\n## 코드정리\n* ```탭구분코드```: common:공통, alone:개인\n","operationId":"updateCsCounselTemplateInfo","parameters":[{"name":"typeCode","in":"query","description":"탭 구분(공통:common, 개인:alone)","schema":{"type":"String"}},{"name":"cnslTmplNo","in":"query","description":"상담템플릿번호","schema":{"type":"String"}},{"name":"cnslAempId","in":"query","description":"사용자ID","schema":{"type":"String"}},{"name":"tmplNm","in":"query","description":"템플릿명","schema":{"type":"String"}},{"name":"tmplCont","in":"query","description":"템플릿내용","schema":{"type":"String"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CsCnslTmplInfo"}}},"required":true},"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````

## 상담템플릿관리 템플릿 등록

> \## 기능설명\
> \* 상담템플릿관리에서 신규템플릿 등록 기능 입니다.\
> \---\
> \## 상세설명\
> \* \[BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 > 템플릿 추가 페이지 저장버튼 클릭 시 호출되는 기능 입니다.\
> \* 중복된 상담템플릿이 아닐 경우 등록 처리 됩니다.\
> \## 특이사항\
> \* 신규 등록 템플릿이 기존 템플릿과 중복되는 경우:\
> &#x20; \* 공통으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 공통에 이미 존재\
> &#x20; \* 개인으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 공통에 이미 존재\
> &#x20; \* 개인으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 개인에 이미 존재\
> \---\
> \## 코드정리\
> \* \`\`\`탭구분코드\`\`\`: common:공통, alone:개인<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":{"CsCnslTmplInfo":{"type":"object","description":"상담템플릿 등록/수정 요청 DTO","properties":{"typeCode":{"type":"string","description":"탭 구분(공통:common, 개인:alone)"},"cnslAempId":{"type":"string","description":"사용자ID"},"cnslTmplNo":{"type":"string","description":"상담템플릿번호"},"cnslGbCd":{"type":"string","description":"상담구분코드"},"cnslTypCd":{"type":"string","description":"상담유형코드"},"tmplNm":{"type":"string","description":"템플릿명"},"tmplCont":{"type":"string","description":"템플릿내용"},"useYn":{"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"}}},"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"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/registCsCounselTemplateInfo":{"post":{"tags":["상담템플릿관리"],"summary":"상담템플릿관리 템플릿 등록","description":"## 기능설명\n* 상담템플릿관리에서 신규템플릿 등록 기능 입니다.\n---\n## 상세설명\n* [BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 > 템플릿 추가 페이지 저장버튼 클릭 시 호출되는 기능 입니다.\n* 중복된 상담템플릿이 아닐 경우 등록 처리 됩니다.\n## 특이사항\n* 신규 등록 템플릿이 기존 템플릿과 중복되는 경우:\n  * 공통으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 공통에 이미 존재\n  * 개인으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 공통에 이미 존재\n  * 개인으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 개인에 이미 존재\n---\n## 코드정리\n* ```탭구분코드```: common:공통, alone:개인\n","operationId":"registCsCounselTemplateInfo","parameters":[{"name":"typeCode","in":"query","description":"탭 구분(공통:common, 개인:alone)","schema":{"type":"String"}},{"name":"cnslGbCd","in":"query","description":"상담구분코드","schema":{"type":"String"}},{"name":"cnslTypCd","in":"query","description":"상담유형코드","schema":{"type":"String"}},{"name":"tmplNm","in":"query","description":"템플릿명","schema":{"type":"String"}},{"name":"tmplCont","in":"query","description":"템플릿내용","schema":{"type":"String"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CsCnslTmplInfo"}}},"required":true},"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````

## 상담템플릿 삭제

> \## 기능설명\
> \* 선택한 상담템플릿을 삭제 합니다.\
> \---\
> \## 상세설명\
> \* \[BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 페이지에서 선택한 상담템플릿을 삭제 할 때 호출되는 기능 입니다.<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":{"RealGridCUDRequestCsCnslTmplInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/CsCnslTmplInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/CsCnslTmplInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/CsCnslTmplInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/CsCnslTmplInfo"}}}},"CsCnslTmplInfo":{"type":"object","description":"상담템플릿 등록/수정 요청 DTO","properties":{"typeCode":{"type":"string","description":"탭 구분(공통:common, 개인:alone)"},"cnslAempId":{"type":"string","description":"사용자ID"},"cnslTmplNo":{"type":"string","description":"상담템플릿번호"},"cnslGbCd":{"type":"string","description":"상담구분코드"},"cnslTypCd":{"type":"string","description":"상담유형코드"},"tmplNm":{"type":"string","description":"템플릿명"},"tmplCont":{"type":"string","description":"템플릿내용"},"useYn":{"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"}}},"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"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/deleteCsCounselTemplateInfoList":{"post":{"tags":["상담템플릿관리"],"summary":"상담템플릿 삭제","description":"## 기능설명\n* 선택한 상담템플릿을 삭제 합니다.\n---\n## 상세설명\n* [BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 페이지에서 선택한 상담템플릿을 삭제 할 때 호출되는 기능 입니다.\n","operationId":"deleteCsCounselTemplateInfoList","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestCsCnslTmplInfo"}}},"required":true},"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 상담템플릿관리 목록 조회

> \## 기능설명\
> \* 상담템플릿관리에 등록된 템플릿 목록을 조회하는 기능 입니다.\
> \---\
> \## 상세설명\
> \* \[BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 페이지에서 조회 버튼 클릭시 호출되는 기능 입니다.\
> \---\
> \## 코드정리(Option)\
> \* \`\`\`탭구분코드\`\`\`: common:공통, alone:개인<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":{"CsCounselTemplateInfoResponse":{"type":"object","properties":{"argInsertUpdate":{"type":"string","description":"등록,수정구분 코드"},"typeCode":{"type":"string","description":"탭 구분(공통:common, 개인:alone)"},"cnslAempId":{"type":"string","description":"사용자ID"},"cnslAempNm":{"type":"string","description":"사용자명"},"cnslTmplNo":{"type":"string","description":"상담템플릿번호"},"cnslGbCd":{"type":"string","description":"상담구분코드(CS015)"},"cnslTypCd":{"type":"string","description":"상담유형코드(CS016)"},"tmplNm":{"type":"string","description":"템플릿명"},"tmplCont":{"type":"string","description":"템플릿내용"},"userId":{"type":"string","description":"회원ID"},"callGub":{"type":"string","description":"호출구분"},"useYn":{"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":{"/v2/customerservice/counselingTemplateMgmt/getCsCounselTemplateInfoList":{"get":{"tags":["상담템플릿관리"],"summary":"상담템플릿관리 목록 조회","description":"## 기능설명\n* 상담템플릿관리에 등록된 템플릿 목록을 조회하는 기능 입니다.\n---\n## 상세설명\n* [BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 페이지에서 조회 버튼 클릭시 호출되는 기능 입니다.\n---\n## 코드정리(Option)\n* ```탭구분코드```: common:공통, alone:개인\n","operationId":"getCsCounselTemplateInfoList_1","parameters":[{"name":"typeCode","in":"query","description":"탭 구분(공통:common, 개인:alone)","required":false,"schema":{"type":"string","description":"탭 구분(공통:common, 개인:alone)"}},{"name":"cnslGbCd","in":"query","description":"상담구분코드(CS015)","required":false,"schema":{"type":"string","description":"상담구분코드(CS015)"}},{"name":"cnslTypCd","in":"query","description":"상담유형코드(CS016)","required":false,"schema":{"type":"string","description":"상담유형코드(CS016)"}},{"name":"tmplNm","in":"query","description":"템플릿명","required":false,"schema":{"type":"string","description":"템플릿명"}},{"name":"userId","in":"query","description":"회원ID","required":false,"schema":{"type":"string","description":"회원ID"}},{"name":"handlerGb","in":"query","description":"처리자 유형","required":false,"schema":{"type":"string","description":"처리자 유형"}},{"name":"useYn","in":"query","description":"사용여부","required":false,"schema":{"type":"string","description":"사용여부"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CsCounselTemplateInfoResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````

## 상담템플릿관리 상세 정보 조회

> \## 기능설명\
> \* 상담템플릿관리에 등록된 템플릿 상세 정보를 조회하는 기능 입니다.\
> \---\
> \## 상세설명\
> \* \[BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 페이지 목록에서 상담템플릿을 선택 시 호출되는 기능 입니다.\
> \---\
> \## 코드정리\
> \* \`\`\`탭구분코드\`\`\`: common:공통, alone:개인<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":{"ResponseCsCounselTemplateInfoResponse":{"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/CsCounselTemplateInfoResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"CsCounselTemplateInfoResponse":{"type":"object","properties":{"argInsertUpdate":{"type":"string","description":"등록,수정구분 코드"},"typeCode":{"type":"string","description":"탭 구분(공통:common, 개인:alone)"},"cnslAempId":{"type":"string","description":"사용자ID"},"cnslAempNm":{"type":"string","description":"사용자명"},"cnslTmplNo":{"type":"string","description":"상담템플릿번호"},"cnslGbCd":{"type":"string","description":"상담구분코드(CS015)"},"cnslTypCd":{"type":"string","description":"상담유형코드(CS016)"},"tmplNm":{"type":"string","description":"템플릿명"},"tmplCont":{"type":"string","description":"템플릿내용"},"userId":{"type":"string","description":"회원ID"},"callGub":{"type":"string","description":"호출구분"},"useYn":{"type":"string","description":"사용여부"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"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"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/getCsCounselTemplateInfoDetail":{"get":{"tags":["상담템플릿관리"],"summary":"상담템플릿관리 상세 정보 조회","description":"## 기능설명\n* 상담템플릿관리에 등록된 템플릿 상세 정보를 조회하는 기능 입니다.\n---\n## 상세설명\n* [BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 페이지 목록에서 상담템플릿을 선택 시 호출되는 기능 입니다.\n---\n## 코드정리\n* ```탭구분코드```: common:공통, alone:개인\n","operationId":"getCsCounselTemplateInfoDetail","parameters":[{"name":"argInsertUpdate","in":"query","description":"저장/수정 구분값","required":false,"schema":{"type":"string","description":"저장/수정 구분값"}},{"name":"typeCode","in":"query","description":"탭 구분(공통:common, 개인:alone)","required":false,"schema":{"type":"string","description":"탭 구분(공통:common, 개인:alone)"}},{"name":"cnslAempId","in":"query","description":"사용자ID","required":false,"schema":{"type":"string","description":"사용자ID"}},{"name":"cnslTmplNo","in":"query","description":"상담템플릿번호","required":false,"schema":{"type":"string","description":"상담템플릿번호"}},{"name":"callGub","in":"query","description":"호출구분","required":false,"schema":{"type":"string","description":"호출구분"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseCsCounselTemplateInfoResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````

## 상담템플릿관리 템플릿 중복체크

> \## 기능설명\
> \* 상담템플릿관리에서 신규템플릿 등록 이전 동일한 템플릿 중복체크여부를 확인하는 기능 입니다\
> \---\
> \## 상세설명\
> \* \[BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 > 템플릿 추가 페이지 저장버튼 클릭 시 호출되는 기능 입니다\
> \---\
> \## 특이사항\
> \* 신규 등록 템플릿이 기존 템플릿과 중복되는 경우:\
> &#x20; \* 공통으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 공통에 이미 존재\
> &#x20; \* 개인으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 공통에 이미 존재\
> &#x20; \* 개인으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 개인에 이미 존재\
> \---\
> \## 코드정리\
> \* \`\`\`탭구분코드\`\`\`: common:공통, alone:개인<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":{"ResponseInteger":{"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":"integer","format":"int32","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"}}},"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"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/checkDuplicateCsCounselTemplateInfo":{"get":{"tags":["상담템플릿관리"],"summary":"상담템플릿관리 템플릿 중복체크","description":"## 기능설명\n* 상담템플릿관리에서 신규템플릿 등록 이전 동일한 템플릿 중복체크여부를 확인하는 기능 입니다\n---\n## 상세설명\n* [BO/CC] 고객서비스  > 상담업무 관리 > 상담템플릿 관리 > 템플릿 추가 페이지 저장버튼 클릭 시 호출되는 기능 입니다\n---\n## 특이사항\n* 신규 등록 템플릿이 기존 템플릿과 중복되는 경우:\n  * 공통으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 공통에 이미 존재\n  * 개인으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 공통에 이미 존재\n  * 개인으로 등록하는 템플릿과 동일한 상담구분/유형, 템플릿명이 개인에 이미 존재\n---\n## 코드정리\n* ```탭구분코드```: common:공통, alone:개인\n","operationId":"checkDuplicateCsCounselTemplateInfo","parameters":[{"name":"typeCode","in":"query","description":"탭 구분(공통:common, 개인:alone)","required":false,"schema":{"type":"string","description":"탭 구분(공통:common, 개인:alone)"}},{"name":"cnslGbCd","in":"query","description":"상담구분코드","required":false,"schema":{"type":"string","description":"상담구분코드"}},{"name":"cnslTypCd","in":"query","description":"상담유형코드","required":false,"schema":{"type":"string","description":"상담유형코드"}},{"name":"tmplNm","in":"query","description":"템플릿명","required":false,"schema":{"type":"string","description":"템플릿명"}},{"name":"tmplCont","in":"query","description":"템플릿내용","required":false,"schema":{"type":"string","description":"템플릿내용"}},{"name":"callGub","in":"query","description":"호출구분","required":false,"schema":{"type":"string","description":"호출구분"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseInteger"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````


---

# 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/cs-bo-api/undefined-7.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.
