> 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/api-en/back-office-api-reference/system-bo-api/dashboard-system.md).

# Dashboard System

## Retrieve Dashboard System Notice List

> \## Function Description\
> \* Retrieves the dashboard main notices and popup notices.\
> \---\
> \## Detailed Description\
> \* If the popup status (popYn) is Y, retrieves popup notices.\
> \* Retrieved if the current date falls between the posting start date/time and posting end date/time.\
> \* Retrieves the combined list of all-notices for the accessed system type code and individual notices belonging to the same company number as the logged-in ID.<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":{"DashboardNoticeRequest":{"type":"object","properties":{"sysRegId":{"type":"string","description":"Registrant ID"},"sysGbCd":{"type":"string","description":"System Classification Code (UR005)"},"bbGbCd":{"type":"string","description":"Board Type Code (CM004)"},"termGbCd":{"type":"string","description":"Period Type (Registration Date/Posting Date)"},"strDtm":{"type":"string","description":"Posting Start Date"},"endDtm":{"type":"string","description":"Posting End Date"},"bbYn":{"type":"string","description":"Post Status"},"ntcGbCd":{"type":"string","description":"Notice Type Code (CM005)"},"bbcNo":{"type":"string","description":"Notice No."},"popYn":{"type":"string","description":"Popup Status"}}},"DashboardNoticeResponse":{"type":"object","properties":{"bbcNo":{"type":"string","description":"Notice No."},"sysGbNm":{"type":"string","description":"System Type"},"bbGbNm":{"type":"string","description":"Post Target Type"},"bbGbCd":{"type":"string","description":"Post Type Code"},"ntcTypCd":{"type":"string","description":"Notice Type Code"},"ntcGbNm":{"type":"string","description":"Notice Type"},"title":{"type":"string","description":"Title"},"bbYn":{"type":"string","description":"Post Status","enum":["Y","N"]},"bbStrDtm":{"type":"string","format":"date-time","description":"Posting Start Date"},"bbEndDtm":{"type":"string","format":"date-time","description":"Posting End Date"},"fxdcYn":{"type":"string","description":"Pinned Post Status","enum":["Y","N"]},"popYn":{"type":"string","description":"Popup Status","enum":["Y","N"]},"qryCnt":{"type":"integer","format":"int32","description":"View Count"},"sysRegDte":{"type":"string","description":"Registration Date"},"bbcCont":{"type":"string","description":"Notice Content"},"fileList":{"type":"array","description":"Attachment List","items":{"$ref":"#/components/schemas/SystemNoticeAttachFileResponse"}},"ntcTypNm":{"type":"string"},"sysRegNm":{"type":"string","description":"Registrant Name"},"fileCount":{"type":"integer","format":"int32","description":"Attachment Count"}}},"SystemNoticeAttachFileResponse":{"type":"object","description":"System Notice Attachment Response DTO","properties":{"bbcNo":{"type":"string","description":"Notice No."},"fileSeq":{"type":"integer","format":"int32","description":"Attachment No."},"atchFileRouteNm":{"type":"string","description":"Attachment File Path"},"atchFileNm":{"type":"string","description":"Attachment File Name"},"atchFileDnldCnt":{"type":"integer","format":"int32","description":"Attachment Download Count"}}},"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/dashboard/system/current-notices":{"get":{"tags":["Dashboard - System"],"summary":"Retrieve Dashboard System Notice List","description":"## Function Description\n* Retrieves the dashboard main notices and popup notices.\n---\n## Detailed Description\n* If the popup status (popYn) is Y, retrieves popup notices.\n* Retrieved if the current date falls between the posting start date/time and posting end date/time.\n* Retrieves the combined list of all-notices for the accessed system type code and individual notices belonging to the same company number as the logged-in ID.\n","operationId":"getSystemNoticeInfoListByToday","parameters":[{"name":"dashboardNoticeRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DashboardNoticeRequest"}},{"name":"sysGbCd","in":"query","description":"System Classification Code","schema":{"type":"string"}},{"name":"bbGbCd","in":"query","description":"Post Type Code","schema":{"type":"string"}},{"name":"strDtm","in":"query","description":"Posting Start Date and Time","schema":{"type":"string"}},{"name":"endDtm","in":"query","description":"Posting End Date and Time","schema":{"type":"string"}},{"name":"popYn","in":"query","description":"Popup Status","schema":{"type":"string"}},{"name":"pageIdx","in":"query","description":"Current Page","required":true,"schema":{"type":"string"}},{"name":"rowsPerPage","in":"query","description":"Rows per Page","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/DashboardNoticeResponse"}}}}},"900":{"description":"Business processing error details","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```
