> 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/statistics-bo-api/undefined-8.md).

# 상품 분석

## 장바구니 현황 목록 조회

> \## 기능설명\
> \* 장바구니 현황 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 매일 09시 기준으로 30일간의 장바구니 데이터를 집계합니다.\
> \* 장바구니 현황은 최대 30일 이전까지 조회할 수 있습니다.\
> \---\
> \## 수정 번호\
> \* Release v2.00\_240827 : 최초 생성<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":{"BasketStatusRequest":{"type":"object","properties":{"siteNo":{"type":"string","description":"사이트번호"},"startDate":{"type":"string","format":"date","description":"조회시작일자"},"endDate":{"type":"string","format":"date","description":"조회종료일자"},"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"mdId":{"type":"string","description":"담당MD ID"},"infDispCtgNoGbCd":{"type":"string","description":"유입전시카테고리번호구분코드"},"infDispCtgNo":{"type":"string","description":"유입전시카테고리번호"},"entrNo":{"type":"string","description":"협력사번호"},"brandNo":{"type":"string","description":"브랜드번호"}}},"RealGridListResponseBasketStatusResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/BasketStatusResponse"}}}},"BasketStatusResponse":{"type":"object","properties":{"siteNo":{"type":"string","description":"사이트번호"},"basketRegDt":{"type":"string","description":"장바구니등록일자"},"siteNm":{"type":"string","description":"사이트명"},"goodsNo":{"type":"string","description":"상품번호"},"infDispCtgNoGbCd":{"type":"string","description":"유입전시카테고리번호구분코드(OM041)"},"infDispCtgNoGbNm":{"type":"string","description":"유입전시카테고리번호구분명"},"infDispCtgNo":{"type":"string","description":"유입전시카테고리번호"},"infDispCtgNm":{"type":"string","description":"유입전시카테고리명"},"entrNo":{"type":"string","description":"협력사번호"},"entrNm":{"type":"string","description":"협력사명"},"brandNo":{"type":"string","description":"브랜드번호"},"brandNm":{"type":"string","description":"브랜드명"},"mdId":{"type":"string","description":"담당MD ID"},"mdNm":{"type":"string","description":"담당MD명"},"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"stdCtgNm":{"type":"string","description":"표준카테고리명"},"imgPath":{"type":"string","description":"이미지경로"},"qty":{"type":"integer","format":"int32","description":"수량"},"goodsNm":{"type":"string","description":"상품명"},"totalByGoods":{"type":"integer","format":"int32","description":"상품별 담은 수량 합계"},"totalByInfDisp":{"type":"integer","format":"int32","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":{"/v1/statistics/basketStatus/getBasketStatusList":{"get":{"tags":["상품 분석"],"summary":"장바구니 현황 목록 조회","description":"## 기능설명\n* 장바구니 현황 목록을 조회합니다.\n---\n## 상세설명\n* 매일 09시 기준으로 30일간의 장바구니 데이터를 집계합니다.\n* 장바구니 현황은 최대 30일 이전까지 조회할 수 있습니다.\n---\n## 수정 번호\n* Release v2.00_240827 : 최초 생성\n","operationId":"getBasketStatusList","parameters":[{"name":"basketStatusRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BasketStatusRequest"}},{"name":"startDate","in":"query","description":"조회 시작일","required":true,"schema":{"type":"LocalDate"}},{"name":"endDate","in":"query","description":"조회 종료일","required":true,"schema":{"type":"LocalDate"}},{"name":"stdCtgNo","in":"query","description":"표준카테고리번호","schema":{"type":"String"}},{"name":"mdId","in":"query","description":"담당MD","schema":{"type":"String"}},{"name":"infDispCtgNoGbCd","in":"query","description":"유입전시카테고리번호구분코드(OM041)","schema":{"type":"String"}},{"name":"infDispCtgNo","in":"query","description":"유입전시카테고리번호","schema":{"type":"String"}},{"name":"entrNo","in":"query","description":"협력사번호","schema":{"type":"String"}},{"name":"siteNo","in":"query","description":"사이트번호","schema":{"type":"String"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RealGridListResponseBasketStatusResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 장바구니 현황 목록 엑셀 다운로드

> \## 기능설명\
> \* 장바구니 현황 목록을 엑셀 다운로드합니다.\
> \---\
> \## 상세설명\
> \* 검색 조건에 해당하는 장바구니 현황 목록을 페이징 처리가 안된 데이터로 엑셀 다운로드 합니다.\
> \---\
> \## 수정번호\
> \* Release v2.00\_240827 : 최초 생성<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":{"BasketStatusRequest":{"type":"object","properties":{"siteNo":{"type":"string","description":"사이트번호"},"startDate":{"type":"string","format":"date","description":"조회시작일자"},"endDate":{"type":"string","format":"date","description":"조회종료일자"},"stdCtgNo":{"type":"string","description":"표준카테고리번호"},"mdId":{"type":"string","description":"담당MD ID"},"infDispCtgNoGbCd":{"type":"string","description":"유입전시카테고리번호구분코드"},"infDispCtgNo":{"type":"string","description":"유입전시카테고리번호"},"entrNo":{"type":"string","description":"협력사번호"},"brandNo":{"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":{"/v1/statistics/basketStatus/basketStatusExcelDownload":{"get":{"tags":["상품 분석"],"summary":"장바구니 현황 목록 엑셀 다운로드","description":"## 기능설명\n* 장바구니 현황 목록을 엑셀 다운로드합니다.\n---\n## 상세설명\n* 검색 조건에 해당하는 장바구니 현황 목록을 페이징 처리가 안된 데이터로 엑셀 다운로드 합니다.\n---\n## 수정번호\n* Release v2.00_240827 : 최초 생성\n","operationId":"basketStatusExcelDownload","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/BasketStatusRequest"}},{"name":"startDate","in":"query","description":"조회 시작일","required":true,"schema":{"type":"LocalDate"}},{"name":"endDate","in":"query","description":"조회 종료일","required":true,"schema":{"type":"LocalDate"}},{"name":"stdCtgNo","in":"query","description":"표준카테고리번호","schema":{"type":"String"}},{"name":"mdId","in":"query","description":"담당MD ID","required":true,"schema":{"type":"String"}},{"name":"infDispCtgNoGbCd","in":"query","description":"유입전시카테고리번호구분코드(OM041)","required":true,"schema":{"type":"String"}},{"name":"infDispCtgNo","in":"query","description":"유입전시카테고리번호","required":true,"schema":{"type":"String"}},{"name":"entrNo","in":"query","description":"협력사번호","required":true,"schema":{"type":"String"}},{"name":"brandNo","in":"query","description":"브랜드번호","required":true,"schema":{"type":"String"}},{"name":"siteNo","in":"query","description":"사이트번호","required":true,"schema":{"type":"String"}}],"responses":{"200":{"description":"성공"},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://tech.x2bee.com/api/back-office-api/statistics-bo-api/undefined-8.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
