# 협력사별 매출수수료 조회

## 협력사별 매출수수료 목록 조회

> \## 기능설명\
> \* 화면에서 선택한 협력사별 매출수수료 요약 항목에 따라 협력사별 매출수수료 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 화면에서 선택한 협력사별 매출수수료 요약 항목에 따라 협력사별 매출수수료 목록을 조회합니다.\
> \---\
> \## 수정번호\
> \* Release v1.03\_231106: 협력사별 매출수수료 최초 개발\
> \* Release v1.04\_231120: 조회조건(주문번호, 상품번호) 추가, 해당 기간 내 전체 협력사 검색 추가(그리드 Footer 클릭)<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":{"EntrCommissionRequest":{"type":"object","description":"협력사별 매출수수료 조회 Request","properties":{"salesStrDt":{"type":"string","description":"매출시작일자"},"salesEndDt":{"type":"string","description":"매출종료일자"},"entrNo":{"type":"string","description":"요약 조회를 위한 협력사번호"},"searchEntrNo":{"type":"string","description":"상세 조회를 위한 협력사번호"},"ordNo":{"type":"string","description":"주문번호"},"goodsNo":{"type":"string","description":"상품번호"}}},"RealGridListResponseEntrCommissionDetailResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/EntrCommissionDetailResponse"}}}},"EntrCommissionDetailResponse":{"type":"object","description":"협력사별 매출수수료 조회 Response","properties":{"ordNo":{"type":"string","description":"주문번호"},"salesGb":{"type":"string","description":"매출구분"},"adjStdDt":{"type":"string","description":"매출일자"},"entrNo":{"type":"string","description":"협력사번호"},"entrNm":{"type":"string","description":"협력사명"},"goodsNo":{"type":"string","description":"상품번호"},"goodsNm":{"type":"string","description":"상품명"},"itmNo":{"type":"string","description":"단품번호"},"itmNm":{"type":"string","description":"단품명"},"supPcost":{"type":"number","description":"공급원가"},"salePrc":{"type":"number","description":"판매가"},"salesQty":{"type":"integer","format":"int64","description":"판매수량"},"totSaleAmt":{"type":"number","description":"총판매금액"},"dcAmt":{"type":"number","description":"할인금액"},"entrDcAmt":{"type":"number","description":"협력사할인금액"},"ourDcAmt":{"type":"number","description":"당사할인금액"},"salesAmt":{"type":"number","description":"순매출금액"},"salesCmsn":{"type":"number","description":"판매수수료"},"siteNo":{"type":"string","description":"사이트번호"},"siteNm":{"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/adjust/entrCommission/getEntrCommissionDetailList":{"get":{"tags":["협력사별 매출수수료 조회"],"summary":"협력사별 매출수수료 목록 조회","description":"## 기능설명\n* 화면에서 선택한 협력사별 매출수수료 요약 항목에 따라 협력사별 매출수수료 목록을 조회합니다.\n---\n## 상세설명\n* 화면에서 선택한 협력사별 매출수수료 요약 항목에 따라 협력사별 매출수수료 목록을 조회합니다.\n---\n## 수정번호\n* Release v1.03_231106: 협력사별 매출수수료 최초 개발\n* Release v1.04_231120: 조회조건(주문번호, 상품번호) 추가, 해당 기간 내 전체 협력사 검색 추가(그리드 Footer 클릭)\n","operationId":"getEntrCommissionDetailList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/EntrCommissionRequest"}},{"name":"salesStrDt","in":"query","description":"매출시작일자","schema":{"type":"string"}},{"name":"salesEndDt","in":"query","description":"매출종료일자","schema":{"type":"string"}},{"name":"searchEntrNo","in":"query","description":"협력사번호","schema":{"type":"string"}},{"name":"ordNo","in":"query","description":"주문번호","schema":{"type":"string"}},{"name":"goodsNo","in":"query","description":"상품번호","schema":{"type":"string"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RealGridListResponseEntrCommissionDetailResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 협력사별 매출수수료 요약 조회

> \## 기능설명\
> \* 화면에서 선택한 조건에 따라 협력사별 매출수수료 요약 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 화면에서 선택한 조건에 따라 협력사별 매출수수료 요약 목록을 조회합니다.\
> \* PO 유입 시 요청 정보의 협력사 번호와 유저 정보의 협력사 정보가 일치해야 합니다.\
> \---\
> \## 수정번호\
> \* Release v1.03\_231106: 협력사별 매출수수료 최초 개발\
> \* Release v1.04\_231120: 조회조건(주문번호, 상품번호) 추가<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":{"EntrCommissionSummaryRequest":{"type":"object","properties":{"salesStrDt":{"type":"string","description":"매출시작일자"},"salesEndDt":{"type":"string","description":"매출종료일자"},"entrNo":{"type":"string","description":"요약 조회를 위한 협력사번호"},"searchEntrNo":{"type":"string","description":"상세 조회를 위한 협력사번호"},"ordNo":{"type":"string","description":"주문번호"},"goodsNo":{"type":"string","description":"상품번호"},"userGbCd":{"type":"string","description":"사용자구분코드(UR001)"},"userEntrNo":{"type":"string","description":"사용자 협력사번호"}}},"EntrCommissionSummaryResponse":{"type":"object","description":"협력사별 매출수수료 요약 Response","properties":{"adjStdDt":{"type":"string","description":"매출일자"},"entrNo":{"type":"string","description":"협력사번호"},"entrNm":{"type":"string","description":"협력사명"},"totSaleAmt":{"type":"integer","format":"int64","description":"총판매금액"},"dcAmt":{"type":"number","description":"할인금액"},"entrDcAmt":{"type":"integer","format":"int64","description":"협력사할인금액"},"ourDcAmt":{"type":"integer","format":"int64","description":"당사할인금액"},"salesAmt":{"type":"number","description":"순매출금액"},"salesCmsn":{"type":"integer","format":"int64","description":"판매수수료"},"siteNm":{"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/adjust/entrCommission/getEntrCommissionSummaryList":{"get":{"tags":["협력사별 매출수수료 조회"],"summary":"협력사별 매출수수료 요약 조회","description":"## 기능설명\n* 화면에서 선택한 조건에 따라 협력사별 매출수수료 요약 목록을 조회합니다.\n---\n## 상세설명\n* 화면에서 선택한 조건에 따라 협력사별 매출수수료 요약 목록을 조회합니다.\n* PO 유입 시 요청 정보의 협력사 번호와 유저 정보의 협력사 정보가 일치해야 합니다.\n---\n## 수정번호\n* Release v1.03_231106: 협력사별 매출수수료 최초 개발\n* Release v1.04_231120: 조회조건(주문번호, 상품번호) 추가\n","operationId":"getEntrCommisionSummaryList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/EntrCommissionSummaryRequest"}},{"name":"salesStrDt","in":"query","description":"매출시작일자","schema":{"type":"string"}},{"name":"salesEndDt","in":"query","description":"매출종료일자","schema":{"type":"string"}},{"name":"entrNo","in":"query","description":"협력사번호","schema":{"type":"string"}},{"name":"ordNo","in":"query","description":"주문번호","schema":{"type":"string"}},{"name":"goodsNo","in":"query","description":"상품번호","schema":{"type":"string"}},{"name":"userGbCd","in":"query","description":"사용자구분코드","schema":{"type":"string"}},{"name":"userEntrNo","in":"query","description":"사용자 협력사번호","schema":{"type":"string"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EntrCommissionSummaryResponse"}}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## 협력사별 매출수수료 목록 엑셀 다운로드

> \## 기능설명\
> \* 화면에서 선택 되어있는 협력사에 매출 수수료 목록을 엑셀 다운로드합니다.\
> \---\
> \## 상세설명\
> \* 화면에서 선택 되어있는 협력사에 매출 수수료 목록을 페이징 처리가 안된 데이터로 엑셀 다운로드합니다.\
> \---\
> \## 수정번호\
> \* Release v1.03\_231106: 협력사별 매출수수료 최초 개발<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":{"EntrCommissionRequest":{"type":"object","description":"협력사별 매출수수료 조회 Request","properties":{"salesStrDt":{"type":"string","description":"매출시작일자"},"salesEndDt":{"type":"string","description":"매출종료일자"},"entrNo":{"type":"string","description":"요약 조회를 위한 협력사번호"},"searchEntrNo":{"type":"string","description":"상세 조회를 위한 협력사번호"},"ordNo":{"type":"string","description":"주문번호"},"goodsNo":{"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/adjust/entrCommission/entrCommissionDetailExcelDownload":{"get":{"tags":["협력사별 매출수수료 조회"],"summary":"협력사별 매출수수료 목록 엑셀 다운로드","description":"## 기능설명\n* 화면에서 선택 되어있는 협력사에 매출 수수료 목록을 엑셀 다운로드합니다.\n---\n## 상세설명\n* 화면에서 선택 되어있는 협력사에 매출 수수료 목록을 페이징 처리가 안된 데이터로 엑셀 다운로드합니다.\n---\n## 수정번호\n* Release v1.03_231106: 협력사별 매출수수료 최초 개발\n","operationId":"entrCommissionDetailExcelDownload","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/EntrCommissionRequest"}},{"name":"salesStrDt","in":"query","description":"매출시작일자","schema":{"type":"string"}},{"name":"salesEndDt","in":"query","description":"매출종료일자","schema":{"type":"string"}},{"name":"searchEntrNo","in":"query","description":"협력사번호","schema":{"type":"string"}},{"name":"ordNo","in":"query","description":"주문번호","schema":{"type":"string"}},{"name":"goodsNo","in":"query","description":"상품번호","schema":{"type":"string"}}],"responses":{"200":{"description":"성공"},"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/settlement-bo-api/undefined-2.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.
