# 고객보상 지급현황

## 고객보상 지급현황 목록 조회

> \## API 설명\
> \* 고객보상 지급현황 목록을 조회 합니다.\
> \---\
> \## 상세 설명\
> \* 접수/지급일자 기준으로 고객보상 지급현황 목록을 조회 합니다.\
> \---\
> \## 코드정리\
> \* \`\`\`기간 검색 종류\`\`\`: 0:지급일자, 1:접수일자\
> \* \`\`\`처리자 검색 종류\`\`\`: 1:회원로그인ID, 2:회원명\
> \* \`\`\`접수자/처리자 종류\`\`\`: 1:접수자, 2:지급자\
> \---\
> \## 수정 번호\
> \* Release v2.00\_240613: 기간 검색 조건 개선\
> \* Release v2.01\_240903: V2 RealGridResponse 변경<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":{"RealGridListResponseCsCustomerCompensResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/CsCustomerCompensResponse"}}}},"CsCustomerCompensResponse":{"type":"object","properties":{"custCpnsAplyNo":{"type":"string"},"accpDtm":{"type":"string"},"accpCont":{"type":"string"},"cpnsAprvStatCd":{"type":"string"},"cpnsAprvStatNm":{"type":"string"},"cpnsPayStatCd":{"type":"string"},"cpnsPayStatNm":{"type":"string"},"cpnsTypNm":{"type":"string"},"cpnsMeanCd":{"type":"string"},"cpnsMeanNm":{"type":"string"},"rspnGbCd":{"type":"string"},"rspnGbNm":{"type":"string"},"cpnsAmtNo":{"type":"string"},"maxPayLim":{"type":"string"},"overAmt":{"type":"string"},"ccnNo":{"type":"string"},"ordNo":{"type":"string"},"goodsNo":{"type":"string"},"goodsNm":{"type":"string"},"itmNm":{"type":"string"},"loginId":{"type":"string"},"mbrNm":{"type":"string"},"mbrNo":{"type":"string"},"entrNm":{"type":"string"},"acptmnId":{"type":"string"},"aprvDtm":{"type":"string"},"aprmnId":{"type":"string"},"retnDtm":{"type":"string"},"retnProcmnId":{"type":"string"},"payDtm":{"type":"string"},"paymnId":{"type":"string"},"payCont":{"type":"string"},"payReqMemo":{"type":"string"},"payBankCd":{"type":"string"},"payActnNo":{"type":"string"},"payDepositorNm":{"type":"string"},"siteNm":{"type":"string"}}},"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/customerservice/customerCompensPayMgmt/getCustomerCompensPayList":{"get":{"tags":["고객보상 지급현황"],"summary":"고객보상 지급현황 목록 조회","description":"## API 설명\n* 고객보상 지급현황 목록을 조회 합니다.\n---\n## 상세 설명\n* 접수/지급일자 기준으로 고객보상 지급현황 목록을 조회 합니다.\n---\n## 코드정리\n* ```기간 검색 종류```: 0:지급일자, 1:접수일자\n* ```처리자 검색 종류```: 1:회원로그인ID, 2:회원명\n* ```접수자/처리자 종류```: 1:접수자, 2:지급자\n---\n## 수정 번호\n* Release v2.00_240613: 기간 검색 조건 개선\n* Release v2.01_240903: V2 RealGridResponse 변경\n","operationId":"getCustomerCompensPayList","parameters":[{"name":"periodType","in":"query","description":"기간 검색 종류","required":false,"schema":{"type":"string","description":"기간 검색 종류"}},{"name":"startDate","in":"query","description":"시작일자","required":false,"schema":{"type":"string","format":"date","description":"시작일자"}},{"name":"endDate","in":"query","description":"종료일자","required":false,"schema":{"type":"string","format":"date","description":"종료일자"}},{"name":"cpnsTypNo","in":"query","description":"보상유형번호","required":false,"schema":{"type":"string","description":"보상유형번호"}},{"name":"cpnsMeanCd","in":"query","description":"보상수단코드(CS019)","required":false,"schema":{"type":"string","description":"보상수단코드(CS019)","enum":["COUPON","CASH","MILEAGE","GIFT"]}},{"name":"mbrType","in":"query","description":"처리자 검색 종류","required":false,"schema":{"type":"string","description":"처리자 검색 종류"}},{"name":"loginId","in":"query","description":"회원로그인ID","required":false,"schema":{"type":"string","description":"회원로그인ID"}},{"name":"mbrNm","in":"query","description":"회원명","required":false,"schema":{"type":"string","description":"회원명"}},{"name":"userType","in":"query","description":"접수자/처리자 종류","required":false,"schema":{"type":"string","description":"접수자/처리자 종류"}},{"name":"userNm","in":"query","description":"담당자명","required":false,"schema":{"type":"string","description":"담당자명"}},{"name":"userId","in":"query","description":"담당자ID","required":false,"schema":{"type":"string","description":"담당자ID"}},{"name":"ccnNo","in":"query","description":"상담번호","required":false,"schema":{"type":"string","description":"상담번호"}},{"name":"siteNo","in":"query","description":"사이트번호","required":false,"schema":{"type":"string","description":"사이트번호"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RealGridListResponseCsCustomerCompensResponse"}}}},"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/cs-bo-api/undefined-8.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.
