# 고객 센터 제공

## 회원 주문여부 조회

> \## 기능 설명\
> \* 회원의 주문 존재 여부를 조회합니다.\
> \---\
> \## 상세 설명\
> \* 고객센터에서 회원번호와 주문번호를 이용하여 회원의 주문 존재 여부를 조회합니다.<br>

```json
{"openapi":"3.0.1","info":{"title":"X2BEE Order API","version":"v1"},"servers":[{"url":"https://api-order.x2bee.com/api/order/","description":"prd"}],"paths":{"/v1/customer/isOrderExist":{"post":{"tags":["고객 센터 제공"],"summary":"회원 주문여부 조회","description":"## 기능 설명\n* 회원의 주문 존재 여부를 조회합니다.\n---\n## 상세 설명\n* 고객센터에서 회원번호와 주문번호를 이용하여 회원의 주문 존재 여부를 조회합니다.\n","operationId":"isOrderExist","parameters":[{"name":"Authorization","in":"header","description":"Access Token","required":false}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IsOrderExistRequest"}}},"required":true},"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/IsOrderExistResponse"}}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}},"components":{"schemas":{"IsOrderExistRequest":{"type":"object","properties":{"isOrderExistItemList":{"type":"array","description":"주문 존재여부 상품정보","items":{"$ref":"#/components/schemas/IsOrderExistItem"}}},"description":"주문 존재 여부 조회 Request DTO"},"IsOrderExistItem":{"type":"object","properties":{"mbrNo":{"type":"string","description":"회원번호"},"ordNo":{"type":"string","description":"주문번호"}},"description":"주문 존재 여부 조회 Request DTO"},"IsOrderExistResponse":{"type":"object","properties":{"ordNo":{"type":"string"},"exist":{"type":"boolean"}}},"Response":{"type":"object","properties":{"timestamp":{"type":"string","description":"result time","format":"date-time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"object","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"}},"description":"validation error list"}}}}
```

## 1:1 문의 나의 주문 상품조회

> \## 기능설명\
> \* 회원별 주문 클레임 상품 목록 조회됩니다.\
> \---\
> \## 상세설명\
> \* 요청받은 주문접수시작일자, 주문접수종료일자 조건에 따라 회원 별 주문 클레임 상품 목록 및 총 개수를 조회합니다.<br>

```json
{"openapi":"3.0.1","info":{"title":"X2BEE Order API","version":"v1"},"servers":[{"url":"https://api-order.x2bee.com/api/order/","description":"prd"}],"paths":{"/v1/customer/getOrderClaimGoodsList":{"post":{"tags":["고객 센터 제공"],"summary":"1:1 문의 나의 주문 상품조회","description":"## 기능설명\n* 회원별 주문 클레임 상품 목록 조회됩니다.\n---\n## 상세설명\n* 요청받은 주문접수시작일자, 주문접수종료일자 조건에 따라 회원 별 주문 클레임 상품 목록 및 총 개수를 조회합니다.\n","operationId":"getOrderClaimGoodsList","parameters":[{"name":"Authorization","in":"header","description":"Access Token","required":false}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OneOnOneOrderClaimInfoRequest"}}},"required":true},"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/OneOnOneOrderClaimInfoResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}},"components":{"schemas":{"OneOnOneOrderClaimInfoRequest":{"type":"object","properties":{"startOrdAccpDtm":{"type":"string","description":"검색시작일자(주문접수수일시)","format":"date"},"endOrdAccpDtm":{"type":"string","description":"검색종료일자(주문접수일시)","format":"date"}},"description":"1:1 문의 나의 주문 상품조회 요청 DTO"},"OneOnOneOrderClaimInfoResponse":{"type":"object","properties":{"ordList":{"type":"array","items":{"$ref":"#/components/schemas/OneOnOneOrderClaimInfo"}},"totCnt":{"type":"integer","format":"int32"}}},"OneOnOneOrderClaimInfo":{"type":"object","properties":{"ordNo":{"type":"string"},"ordAccpDtm":{"type":"string","format":"date-time"},"mbrNo":{"type":"string"},"ordGbCd":{"type":"string"},"ordManNm":{"type":"string"},"ordGoodsList":{"type":"array","items":{"$ref":"#/components/schemas/OneOnOneOrderClaimGoods"}}}},"OneOnOneOrderClaimGoods":{"type":"object","properties":{"ordDtlGbCd":{"type":"string"},"ordDtlStatCd":{"type":"string"},"ordDtlStatDtm":{"type":"string","format":"date-time"},"ordSeq":{"type":"string"},"ordProcSeq":{"type":"string"},"brandNo":{"type":"string"},"brandNm":{"type":"string"},"goodsNo":{"type":"string"},"goodsNm":{"type":"string"},"goodsImg":{"type":"string"},"itmNo":{"type":"string"},"itmNm":{"type":"string"},"norPrc":{"type":"integer","format":"int64"},"salePrc":{"type":"integer","format":"int64"},"ordQty":{"type":"integer","format":"int32"}}},"Response":{"type":"object","properties":{"timestamp":{"type":"string","description":"result time","format":"date-time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"object","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"}},"description":"validation error list"}}}}
```


---

# 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/store-front-api/order-api/undefined-23.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.
