# ADMIN 메인

## 즐겨찾기 메뉴 등록

> \## 기능설명\
> \* 선택한 메뉴를 즐겨찾기 등록합니다.\
> \---\
> \## 상세설명\
> \* 즐겨찾기 사용여부는 Y로 저장됩니다.\
> \* 등록된 메뉴는 ADMIN 좌측 메뉴 상위에 즐겨찾기 목록이 노출됩니다.<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":{"UserFavoriteMenuRequest":{"type":"object","description":"즐겨찾기 등록 요청 DTO","properties":{"userId":{"type":"string","description":"사용자아이디"},"rtGrpNo":{"type":"string","description":"권한그룹번호"},"rtTgtSeq":{"type":"string","description":"권한대상순번"},"sortSeq":{"type":"integer","format":"int64","description":"정렬순서"},"rtTgtNm":{"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":{"/v1/main/main/registUserFavoriteMenu":{"post":{"tags":["ADMIN 메인"],"summary":"즐겨찾기 메뉴 등록","description":"## 기능설명\n* 선택한 메뉴를 즐겨찾기 등록합니다.\n---\n## 상세설명\n* 즐겨찾기 사용여부는 Y로 저장됩니다.\n* 등록된 메뉴는 ADMIN 좌측 메뉴 상위에 즐겨찾기 목록이 노출됩니다.\n","operationId":"registUserFavoriteMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserFavoriteMenuRequest"}}},"required":true},"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 즐겨찾기 메뉴 삭제

> \## 기능설명\
> \* 선택한 즐겨찾기 삭제합니다.\
> \---\
> \## 상세설명\
> \* 즐겨찾기 목록에서 선택한 메뉴를 삭제합니다.\
> \* 삭제된 메뉴는 ADMIN 좌측 메뉴 상위에 즐겨찾기 목록이 노출됩니다.<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":{"StUserFvtInfo":{"type":"object","description":"사용자 즐겨찾기 Entity","properties":{"userId":{"type":"string","description":"사용자아이디"},"useYn":{"type":"string","description":"사용여부"},"rtTgtSeq":{"type":"string","description":"권한대상순번"},"sortSeq":{"type":"integer","format":"int64","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":{"/v1/main/main/deleteUserFavoriteMenu":{"post":{"tags":["ADMIN 메인"],"summary":"즐겨찾기 메뉴 삭제","description":"## 기능설명\n* 선택한 즐겨찾기 삭제합니다.\n---\n## 상세설명\n* 즐겨찾기 목록에서 선택한 메뉴를 삭제합니다.\n* 삭제된 메뉴는 ADMIN 좌측 메뉴 상위에 즐겨찾기 목록이 노출됩니다.\n","operationId":"deleteUserFavoriteMenu","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StUserFvtInfo"}}},"required":true},"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 상단 메뉴 조회

> \## 기능설명\
> \* ADMIN 상단메뉴를 조회합니다.\
> \---\
> \## 상세설명\
> \* 로그인 된 계정의 권한에 해당되는 상단 메뉴를 조회합니다.\
> \* 로그인 된 계정와 동일한 시스템구분코드의 메뉴를 조회합니다.<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":{"LoginRequest":{"type":"object","properties":{"seq":{"type":"integer","format":"int64"},"loginId":{"type":"string","minLength":1},"password":{"type":"string"},"remoteAddr":{"type":"string"},"lastAccessTime":{"type":"integer","format":"int64"},"userGbCd":{"type":"string"},"rtGrpNo":{"type":"string"},"jobGrpCd":{"type":"string"},"ocpCd":{"type":"string"},"caloUrl":{"type":"string"},"sysGbCd":{"type":"string"},"userId":{"type":"string"},"pwd":{"type":"string"},"userNm":{"type":"string"},"cellSctNo":{"type":"string"},"cellTxnoNo":{"type":"string"},"cellEndNo":{"type":"string"},"pwdIniYn":{"type":"string"},"sessId":{"type":"string"},"tpCd":{"type":"string"},"entrNo":{"type":"string"},"entrNm":{"type":"string"},"applicationName":{"type":"string"},"privacyPolicyInfoList":{"type":"array","items":{"$ref":"#/components/schemas/PrivacyPolicyInfo"}},"permissionToViewPersonalInfo":{"type":"object","additionalProperties":{}},"username":{"type":"string"},"accountNonExpired":{"type":"boolean"},"accountNonLocked":{"type":"boolean"},"credentialsNonExpired":{"type":"boolean"},"name":{"type":"string"},"enabled":{"type":"boolean"}},"required":["loginId"]},"PrivacyPolicyInfo":{"type":"object","description":"개인정보취급권한 DTO","properties":{"userId":{"type":"string","description":"사용자 아이디"},"indInfoGbCd":{"type":"string","description":"개인정보구분코드(UR008)"},"useYn":{"type":"string","description":"사용여부"}}},"ResponseListTopMenuResponse":{"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/TopMenuResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"TopMenuResponse":{"type":"object","description":"상단메뉴 조회 응답 DTO","properties":{"rtTgtSeq":{"type":"string","description":"권한대상순번"},"sysGbCd":{"type":"string","description":"시스템구분코드(UR005)"},"rtTgtNm":{"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":{"/v1/main/main/getTopMenuList":{"get":{"tags":["ADMIN 메인"],"summary":"상단 메뉴 조회","description":"## 기능설명\n* ADMIN 상단메뉴를 조회합니다.\n---\n## 상세설명\n* 로그인 된 계정의 권한에 해당되는 상단 메뉴를 조회합니다.\n* 로그인 된 계정와 동일한 시스템구분코드의 메뉴를 조회합니다.\n","operationId":"getTopMenuList","parameters":[{"name":"loginRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/LoginRequest"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListTopMenuResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 좌측 메뉴 조회

> \## 기능설명\
> \* ADMIN 좌측메뉴를 조회합니다.\
> \---\
> \## 상세설명\
> \* 로그인 된 계정의 권한에 해당되는 좌측 메뉴를 조회합니다.\
> \* 로그인 된 계정와 동일한 시스템구분코드의 메뉴를 조회합니다.<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":{"TopMenuRequest":{"type":"object","description":"상단메뉴 조회 요청 DTO","properties":{"rtTgtSeq":{"type":"string","description":"권한대상순번","minLength":1},"userGbCd":{"type":"string","description":"사용자구분코드(UR001)"},"rtGrpNo":{"type":"string","description":"권한그룹번호"},"jobGrpCd":{"type":"string","description":"업무그룹코드(UR002)"},"sysGbCd":{"type":"string","description":"시스템구분코드(UR005)"},"userId":{"type":"string","description":"사용자아이디"}},"required":["rtTgtSeq"]},"ResponseListLeftMenuResponse":{"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/LeftMenuResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"LeftMenuResponse":{"type":"object","description":"좌측메뉴 조회 응답 DTO","properties":{"rtTgtSeq":{"type":"string","description":"권한대상순번"},"rtTgtNm":{"type":"string","description":"권한대상명"},"uprRtTgtSeq":{"type":"string","description":"상위권한대상순번"},"useYn":{"type":"string","description":"사용여부","enum":["Y","N"]},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"level":{"type":"integer","format":"int32","description":"좌측메뉴 계층레벨"},"leafMenuYn":{"type":"string","description":"최하위메뉴여부"},"callUrl":{"type":"string","description":"호출URL"},"hierarchy":{"type":"string","description":"계층조합"},"childMenuList":{"description":"하위메뉴리스트"},"sysModId":{"type":"string","description":"수정자아이디"},"sysModDtm":{"type":"string","format":"date-time","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":{"/v1/main/main/getLeftMenuList":{"get":{"tags":["ADMIN 메인"],"summary":"좌측 메뉴 조회","description":"## 기능설명\n* ADMIN 좌측메뉴를 조회합니다.\n---\n## 상세설명\n* 로그인 된 계정의 권한에 해당되는 좌측 메뉴를 조회합니다.\n* 로그인 된 계정와 동일한 시스템구분코드의 메뉴를 조회합니다.\n","operationId":"getLeftMenuList","parameters":[{"name":"topMenuRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/TopMenuRequest"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListLeftMenuResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 즐겨찾기 조회

> \## 기능설명\
> \* 로그인 된 계정의 즐겨찾기 목록이 조회됩니다.\
> \---\
> \## 상세설명\
> \* 조회된 목록은 좌측 메뉴의 마이메뉴 탭에 노출됩니다.\
> \* 사용여부가 Y인 결과만 조회합니다.<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":{"TopMenuRequest":{"type":"object","description":"상단메뉴 조회 요청 DTO","properties":{"rtTgtSeq":{"type":"string","description":"권한대상순번","minLength":1},"userGbCd":{"type":"string","description":"사용자구분코드(UR001)"},"rtGrpNo":{"type":"string","description":"권한그룹번호"},"jobGrpCd":{"type":"string","description":"업무그룹코드(UR002)"},"sysGbCd":{"type":"string","description":"시스템구분코드(UR005)"},"userId":{"type":"string","description":"사용자아이디"}},"required":["rtTgtSeq"]},"ResponseListLeftMenuResponse":{"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/LeftMenuResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"LeftMenuResponse":{"type":"object","description":"좌측메뉴 조회 응답 DTO","properties":{"rtTgtSeq":{"type":"string","description":"권한대상순번"},"rtTgtNm":{"type":"string","description":"권한대상명"},"uprRtTgtSeq":{"type":"string","description":"상위권한대상순번"},"useYn":{"type":"string","description":"사용여부","enum":["Y","N"]},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"level":{"type":"integer","format":"int32","description":"좌측메뉴 계층레벨"},"leafMenuYn":{"type":"string","description":"최하위메뉴여부"},"callUrl":{"type":"string","description":"호출URL"},"hierarchy":{"type":"string","description":"계층조합"},"childMenuList":{"description":"하위메뉴리스트"},"sysModId":{"type":"string","description":"수정자아이디"},"sysModDtm":{"type":"string","format":"date-time","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":{"/v1/main/main/getFavoriteMenu":{"get":{"tags":["ADMIN 메인"],"summary":"즐겨찾기 조회","description":"## 기능설명\n* 로그인 된 계정의 즐겨찾기 목록이 조회됩니다.\n---\n## 상세설명\n* 조회된 목록은 좌측 메뉴의 마이메뉴 탭에 노출됩니다.\n* 사용여부가 Y인 결과만 조회합니다.\n","operationId":"getFavoriteMenu","parameters":[{"name":"topMenuRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/TopMenuRequest"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListLeftMenuResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 전체 메뉴 조회

> \## 기능설명\
> \* ADMIN 전체메뉴를 조회합니다.\
> \---\
> \## 상세설명\
> \* 로그인 된 계정의 권한에 해당되는 전체 메뉴를 조회합니다.\
> \* 로그인 된 계정와 동일한 시스템구분코드의 메뉴를 조회합니다.<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":{"ResponseListAllMenuResponse":{"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/AllMenuResponse"}},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"AllMenuResponse":{"type":"object","description":"전체메뉴 조회 응답 DTO","properties":{"blank":{"type":"string","description":"타겟 타입"},"btnId":{"type":"string","description":"버튼 아이디"},"custInfoInclYn":{"type":"string"},"newSortSeq":{"type":"string"},"popupYn":{"type":"string"},"rmkCont":{"type":"string"},"rtGrpNo":{"type":"string"},"rtSubGbCd":{"type":"string"},"rtTgtTypCd":{"type":"string"},"userHelpCont":{"type":"string"},"sysRegId":{"type":"string"},"sysGbCd":{"type":"string"},"sysRegDtm":{"type":"string"},"rtTgtSeq":{"type":"string","description":"권한대상순번"},"rtTgtNm":{"type":"string","description":"권한대상명"},"initial":{"type":"string","description":"약어","enum":["OR","PR","PM","ME","CC","DE","ST","PD","SM","DP","AA"]},"uprRtTgtSeq":{"type":"string","description":"상위권한대상순번"},"useYn":{"type":"string","description":"사용여부","enum":["Y","N"]},"sortSeq":{"type":"integer","format":"int32","description":"정렬순서"},"level":{"type":"integer","format":"int32","description":"좌측메뉴 계층레벨"},"leafMenuYn":{"type":"string","description":"최하위메뉴여부"},"callUrl":{"type":"string","description":"호출URL"},"hierarchy":{"type":"string","description":"계층조합"},"childMenuList":{"description":"하위메뉴리스트"},"sysModId":{"type":"string","description":"수정자아이디"},"sysModDtm":{"type":"string","format":"date-time","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":{"/v1/main/main/getAllMenuList":{"get":{"tags":["ADMIN 메인"],"summary":"전체 메뉴 조회","description":"## 기능설명\n* ADMIN 전체메뉴를 조회합니다.\n---\n## 상세설명\n* 로그인 된 계정의 권한에 해당되는 전체 메뉴를 조회합니다.\n* 로그인 된 계정와 동일한 시스템구분코드의 메뉴를 조회합니다.\n","operationId":"getAllMenuList","responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseListAllMenuResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 즐겨찾기 메뉴 중복체크

> \## 기능설명\
> \* 즐겨찾기 등록 시 해당 메뉴가 기등록된 메뉴인지 체크합니다.\
> \---\
> \## 상세설명\
> \* 기등록된 메뉴는 즐겨찾기 등록이 불가능합니다.<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":{"UserFavoriteMenuRequest":{"type":"object","description":"즐겨찾기 등록 요청 DTO","properties":{"userId":{"type":"string","description":"사용자아이디"},"rtGrpNo":{"type":"string","description":"권한그룹번호"},"rtTgtSeq":{"type":"string","description":"권한대상순번"},"sortSeq":{"type":"integer","format":"int64","description":"정렬순서"},"rtTgtNm":{"type":"string","description":"메뉴명"},"useYn":{"type":"string","description":"사용여부"}}},"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":{"/v1/main/main/checkDuplicateUserFavoriteMenu":{"get":{"tags":["ADMIN 메인"],"summary":"즐겨찾기 메뉴 중복체크","description":"## 기능설명\n* 즐겨찾기 등록 시 해당 메뉴가 기등록된 메뉴인지 체크합니다.\n---\n## 상세설명\n* 기등록된 메뉴는 즐겨찾기 등록이 불가능합니다.\n","operationId":"checkDuplicateUserFavoriteMenu","parameters":[{"name":"userFavoriteMenuRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/UserFavoriteMenuRequest"}}],"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/system-bo-api/admin.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.
