---
title: "getCoinHistoryList"
slug: "platform-discount-getcoinhistorylist"
tags: ["Discount"]
updated: 2026-04-23T08:55:32Z
published: 2026-04-23T09:02:14Z
canonical: "api.ncloud-docs.com/platform-discount-getcoinhistorylist"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# getCoinHistoryList

<p class="platform-info type-classic-vpc">Classic/VPC 환경에서 이용 가능합니다.</p>

계정에 부여된 코인의 현황과 사용 이력을 조회합니다.

## 요청 <a name="요청"></a>
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.

| 메서드 | URI |
| :--- | :--- |
| GET, POST | /discount/getCoinHistoryList |

### 요청 헤더 <a name="요청헤더"></a>
Discount API에서 공통으로 사용하는 헤더에 대한 자세한 내용은 [Discount 공통 헤더](/docs/platform-discount#요청헤더)를 참조해 주십시오.

### 요청 쿼리 파라미터 <a name="요청쿼리파라미터"></a>
파라미터에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| :--- | :--- | :--- | :--- |
| `pageNo` | Integer | Optional | 페이지 번호 |
| `pageSize` | Integer | Optional | 페이지 크기<ul><li>1,000 이하(기본값: 1,000)</li></ul> |
| `discountNoList.N` | List&lt;String&gt; | Optional | 조회할 코인 번호<ul><li>미 입력 시 전체 코인의 사용 이력 응답</li><li>코인 번호는 [getDiscountList](/docs/platform-discount-getdiscountlist) 액션을 통해 확인</li></ul></ul> |
| `isOrganization` | Boolean | Optional | Organization 서비스 계정 통합 조회 여부<ul><li>마스터만 사용 가능</li><li>`isOrganization`, `isPartner` 모두 `true`이면 에러 응답</li></ul> |
| `isPartner` | Boolean | Optional | 파트너 계정 조회 여부<ul><li>파트너 대표만 사용 가능</li><li>`isOrganization`, `isPartner` 모두 `true`이면 에러 응답</li></ul>  |
| `memberNoList.N` | List&lt;String&gt; | Optional | 회원 번호 목록<ul><li>마스터 또는 파트너 대표만 사용 가능</li></ul></ul> |
| `responseFormatType` | String | Optional | 응답 결과의 포맷 유형<ul><li>`xml` (기본값) \| `json`</li></ul> |

### 요청 예시 <a name="요청예시"></a>
요청 예시는 다음과 같습니다.

```curl
curl --location  --request GET 'https://billingapi.apigw.ntruss.com/billing/v1/discount/getCoinHistoryList' \
--header 'x-ncp-apigw-timestamp: {timestamp}' \
--header 'x-ncp-iam-access-key: {access key}' \
--header 'x-ncp-apigw-signature-v2: {signature}' \
```

## 응답 <a name="응답"></a>
응답 형식을 설명합니다.

### 응답 바디 <a name="응답바디"></a>
응답 바디는 [CoinHistoryList](/docs/common-vapidatatype-coinhistorylist)를 참조해 주십시오.

### 응답 상태 코드 <a name="응답상태코드"></a>
네이버 클라우드 플랫폼에서 공통으로 사용하는 응답 상태 코드에 대한 자세한 내용은 [Ncloud API 응답 상태 코드](/docs/common-ncpapi#3응답상태코드)를 참조해 주십시오.

### 응답 예시 <a name="응답예시"></a>
응답 예시는 다음과 같습니다.

```xml
<?xml version="1.0" encoding="UTF-8"?>
<getCoinHistoryList>
<requestId>103****-****-****-****-****6563ca0b</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>2</totalRows>
<coinHistoryList>
<coinHistory>
<memberNo>******</memberNo>
<coin>
<discountNo>54</discountNo>
<coinChagedNo>42</coinChagedNo>
<coinName>계좌이체(농협)</coinName>
<coinType>
<code>COIN</code>
<codeName>Common Coin</codeName>
</coinType>
<chargedCoin>100000</chargedCoin>
<remainingCoin>100000</remainingCoin>
<coinStatus>
<code>NOML</code>
<codeName>Normal</codeName>
</coinStatus>
<isShareCoin>false</isShareCoin>
        <validityStartMonth>202007</validityStartMonth>
<validityEndMonth>202307</validityEndMonth>
        <shareCoinSnapshotList/>  
</coin>
<coinUseHistory/>
</coinHistory>
<coinHistory>
<memberNo>******</memberNo>
<coin>
<discountNo>55</discountNo>
<coinChagedNo>42</coinChagedNo>
<coinName>계좌이체(농협)</coinName>
<coinType>
<code>BONUS</code>
<codeName>Bonus Coing</codeName>
</coinType>
<chargedCoin>1500</chargedCoin>
<remainingCoin>1500</remainingCoin>
<coinStatus>
<code>RFNDSS</code>
<codeName>Refund Success</codeName>
</coinStatus>
<isShareCoin>false</isShareCoin>  
        <validityStartMonth>202007</validityStartMonth>
<validityEndMonth>202107</validityEndMonth>
        <shareCoinSnapshotList/> 
</coin>
<coinUseHistory/>
</coinHistory>
</coinHistoryList>
</getCoinHistoryList>
```
