# ONE store IAP Server API

### **Overview** <a href="#onestoreiapserverapi-overview" id="onestoreiapserverapi-overview"></a>

ONE store IAP Server API indicates Open API to check the data of in-app, which has been billed on ONE store or to change the billing status.

OAuth authentication is necessary to use this API.

### **Host URL** <a href="#onestoreiapserverapi-hosturl" id="onestoreiapserverapi-hosturl"></a>

The URL of {host} used in this document is shown below.

| ONE store environment | Host URL                                            |
| --------------------- | --------------------------------------------------- |
| SANDBOX(development)  | [sbpp.onestore.co.kr](https://sbpp.onestore.co.kr/) |
| Commercial            | [apis.onestore.co.kr](https://apis.onestore.co.kr/) |

### **ONE store OAuth** <a href="#onestoreiapserverapi-onestoreoauth" id="onestoreiapserverapi-onestoreoauth"></a>

#### OAuth overview <a href="#onestoreiapserverapi-oauthoverview" id="onestoreiapserverapi-oauthoverview"></a>

OAuth authentication is necessary for interworking with ONE store Server Open API.

* Understanding ONE store OAuth v2
  * AccessToken is the value that can get issued through ONE store’s Server Open API, and it is used as the authentication value when the Server Open API provided by ONE store is called.
  * AccessToken has a default duration of 3,600 seconds. When the valid duration expires or is less than 600 seconds, if you call getAccessToken(), a new AccessToken will be issued.&#x20;
  * The existing AccessToken is also available until the valid duration ends.
  * Numerous AccessTokens get issued in this way, and therefore you can acquire and use AccessTokens differentiated for each service instance of the developer.
* The typical interworking flow is as follows<br>
* Call the process for obtaining AccessToken (no.1) when the authentication error occurs during API calls.

Use the Authorization Bearer scheme to call ONE store IAP Server API, and the call sample is as shown below.

| `GET /v6/apps/com.onestore.game.goindol/purchases/inapp/products/product01/SANDBOXT000120004476 HTTP/1.1Host: sbpp.onestore.co.krAuthorization: Bearer 680b3621-1234-1234-1234-8adfaef561b4` |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

‘Bearer + Vavant + AccessToken’ must be entered exactly and case-sensitive in the Authorization header as seen in the example above.\
The Bearer’s value is the value of AccessToken, which has been issued by calling upon getAccessToken().

Incorrect example

| `Authorization: 680b3621-1234-1234-1234-8adfaef561b4Authorization: bearer 680b3621-1234-1234-1234-8adfaef561b4Authorization: Bearer <680b3621-1234-1234-1234-8adfaef561b4>Authorization:Bearer680b3621-1234-1234-1234-8adfaef561b4` |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

#### OAuth API details <a href="#onestoreiapserverapi-oauthapidetails" id="onestoreiapserverapi-oauthapidetails"></a>

**Check client\_id & client\_secret**

You can check the client\_id and client\_secret values by clicking on the ‘Credentials’ button on the ‘In-App’ of the app registered on ONE store Developer Center.

![](https://2218522982-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgStyyzRzNh9x2u93ZH03%2Fuploads%2FmWctBKN2C9WNJl8TqKlN%2Fimage.png?alt=media\&token=327cc2d9-efc6-4dee-b95d-d85e71efae07)

![](https://2218522982-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgStyyzRzNh9x2u93ZH03%2Fuploads%2FWtS6v3S8BQTs4g5cDO3G%2Fimage.png?alt=media\&token=d843bfc1-4b0b-4ef9-a8a7-f02bd2b8a48c)

**Issue AccessToken**

* **URI :** https\://{host}/v6/oauth/token
* **Method:** POST, PUT
* **Request Parameter:** Form format

  | Parameter Name | Description                                                                                        | Example                                      |
  | -------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------- |
  | client\_id     | Typically, it is the same as packageName                                                           | com.onestore.game.goindol                    |
  | client\_secret | It is the client secret value that has been issued when the app is registered on Developer Center. | vxIMAGcVz3DAx20uDBr/IDWNJAPNHFl7YruF4uxB6BI= |
  | grant\_type    | It is the fixed value                                                                              | client\_credentials                          |
* **Request Header** :&#x20;

  | Parameter Name | Description                                                                              | Example                                         |
  | -------------- | ---------------------------------------------------------------------------------------- | ----------------------------------------------- |
  | Content-Type   | At the request of http, Content-Type must be set as ‘application/x-www-form-urlencoded’. | Content-Type: application/x-www-form-urlencoded |
* **Example**&#x20;

  | `POST /v6/oauth/token HTTP/1.1Host: apis.onestore.comContent-Type: application/x-www-form-urlencoded;charset=UTF-8` `grant_type=client_credentials&client_id=com.onestore.game.goindol&client_secret=vxIMAGcVz3DAx20uDBr/IDWNJAPNHFl7YruF4uxB6BI=` |
  | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
* **Response Body** : JSON format

  | Element Name  | Data Type | Data Size | Description                              |
  | ------------- | --------- | --------- | ---------------------------------------- |
  | client\_id    | String    | 255       | OAuth authentication client\_id          |
  | access\_token | String    | 36        | AccessToken                              |
  | token\_type   | String    | 6         | It provides the bearer method only       |
  | expires\_in   | Integer   | 10        | Token expiration period, unit: second(s) |
  | scope         | String    | 1024      | Token use range                          |
* **Example :**&#x20;

  | `{    "client_id":"com.onestore.game.goindol",    "access_token":"680b3621-1234-1234-1234-8adfaef561b4",    "token_type":"bearer",    "expires_in":3010,    "scope":"DEFAULT"}` |
  | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
* **Example of issuance:**&#x20;

  | `curl -v -X POST -H "Content-Type: application/x-www-form-urlencoded"` `https://sbpp.onestore.co.kr/v6/oauth/token -d "grant_type=client_credentials" -d "client_id=com.onestore.game.goindol" -d "client_secret=vxIMAGcVz3DAx20uDBr/IDWNJAPNHFl7YruF4uxB6BI="> POST /v6/oauth/token HTTP/1.1> Host: sbpp.onestore.co.kr> User-Agent: curl/7.43.0> Accept: */*> Content-Type: application/x-www-form-urlencoded;charset=UTF-8> Content-Length: 35>* upload completely sent off: 35` `out of 35` `bytes< HTTP/1.1` `200` `200< Date: Wed, 02` `May 2018` `02:52:42` `GMT< Server: Apache< Connection: close< Transfer-Encoding: chunked< Content-Type: application/json;charset=UTF-8<* Closing connection 0{"client_id":"com.onestore.game.goindol","access_token":"680b3621-1234-1234-1234-8adfaef561b4","token_type":"bearer","expires_in":3600,"scope":"DEFAULT"}` |
  | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

  AccessToken in the review (development) and commercial environments is managed independently, and therefore you must manage AccessToken separately per environment.

### **Server API Details** <a href="#onestoreiapserverapi-serverapidetails" id="onestoreiapserverapi-serverapidetails"></a>

#### getPurchaseDetails (Check purchased in-app product details) <a href="#onestoreiapserverapi-getpurchasedetails-checkpurchasedin-appproductdetails" id="onestoreiapserverapi-getpurchasedetails-checkpurchasedin-appproductdetails"></a>

* **Desc :** It checks the details of purchased ONE store Managed Product. You must search the details by using ONE store purchaseToken (purchase token), which has been received at the completion of the purchase. If you search the details with purchaseToken of Monthly auto-renewal product, then the check failure (NoSuchData) response will be transmitted.
* **URI :** https\://{host}/v6/apps/{packageName}/purchases/inapp/products/{productId}/{purchaseToken}
* **Method :** GET
* **Request Parameter :** Path Variable format
  * String packageName : Package name of the app that calls API (Data Size : 128)
  * String productId : In-app ID (data size : 150)
  * String purchaseToken : Purchase token (data size : 20)
* **Request Header:**&#x20;

  | Parameter Name | Data Type | Required | Description                                                 |
  | -------------- | --------- | -------- | ----------------------------------------------------------- |
  | Authorization  | String    | true     | access\_token that has been issued through Access Token API |
  | Content-Type   | String    | true     | application/json                                            |
* **Example**&#x20;

  | `Request.setHeader("Authorization", "Bearer 680b3621-1234-1234-1234-8adfaef561b4");Request.setHeader("Content-Type", "application/json");` |
  | ------------------------------------------------------------------------------------------------------------------------------------------ |
* **Request Body :** N/A&#x20;
* **Response Body** : JSON format

  | Element Name     | Data Type | Data Size | Description                                                             |
  | ---------------- | --------- | --------- | ----------------------------------------------------------------------- |
  | consumptionState | Integer   | 1         | The ‘consume’ status of purchased in-app (0: not consumed, 1: consumed) |
  | developerPayload | String    | 200       | Unique billing identifier provided by the developer                     |
  | purchaseState    | Integer   | 1         | Purchase status (0: purchase completed, 1: cancellation completed)      |
  | purchaseTime     | Long      | 13        | Purchase time (ms)                                                      |
  | purchaseId       | String    | 20        | Purchase ID                                                             |
  | acknowledgeState | Integer   | 1         | Purchase acknowledgement status (0: not acknowledged, 1: acknowledged)  |
* **Example:**

  | `HTTP/1.1` `200` `OKContent-type: application/json;charset=UTF-8{    "consumptionState": 0,    "developerPayload": "developerPayload",    "purchaseState": 0,    "purchaseTime": 1345678900000,    "purchaseId": "17070421461015116878",    "acknowledgeState": 0}` |
  | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

#### getRecurringPurchaseDetails (Check purchased Monthly auto-renewal product details)  <a href="#onestoreiapserverapi-getrecurringpurchasedetails-checkpurchasedmonthlyauto-renewalproductdetails" id="onestoreiapserverapi-getrecurringpurchasedetails-checkpurchasedmonthlyauto-renewalproductdetails"></a>

* **Desc :** It checks the automatic payment status of purchased ONE store Monthly auto-renewal product and the details of the last purchase status. You must check them by using ONE store purchaseToken (purchase token), which has been received at the completion of the purchase. If you check the details with purchaseToken of Managed Product, then the check failure (NoSuchData) response will be transmitted.
* **URI :** https\://{host}/v6/apps/{packageName}/purchases/inapp/products/{productId}/{purchaseToken}
* **Method :** GET
* **Request Parameter :** Path Variable format
  * String packageName : Package name of the app that calls API (Data Size : 128)
  * String productId : In-app ID (data size : 150)
  * String purchaseToken : Purchase token (data size : 20)
* **Request Header:**&#x20;

  | Parameter Name | Data Type | Required | Description                                                 |
  | -------------- | --------- | -------- | ----------------------------------------------------------- |
  | Authorization  | String    | true     | access\_token that has been issued through Access Token API |
  | Content-Type   | String    | true     | application/json                                            |
* **Example**&#x20;

  | `Request.setHeader("Authorization", "Bearer 680b3621-1234-1234-1234-8adfaef561b4");Request.setHeader("Content-Type", "application/json");` |
  | ------------------------------------------------------------------------------------------------------------------------------------------ |
* **Request Body :** N/A
* **Response Body** : JSON format

  | Element Name      | Data Type | Data Size | Description                                                                                                    |
  | ----------------- | --------- | --------- | -------------------------------------------------------------------------------------------------------------- |
  | startTime         | Long      | 13        | The use start time of purchased in-app (ms)                                                                    |
  | expiryTime        | Long      | 13        | The use end time of purchased in-app (ms)                                                                      |
  | nextPaymentTime   | Long      | 13        | The next automatic payment time                                                                                |
  | autoRenewing      | boolean   | -         | Whether the automatic payment is made or not after the use end time has exceeded.                              |
  | cancelReason      | Integer   | 1         | Reasons for cancellation (0: cancellation by the customer request, 1: cancellation by other system processing) |
  | cancelledTime     | Long      | 13        | Cancellation time (ms)                                                                                         |
  | acknowledgeState  | Integer   | 1         | The purchase acknowledgement status of Monthly auto-renewal product (0: not acknowledged, 1: acknowledged)     |
  | lastPurchaseId    | String    | 20        | The Purchase ID of the last automatic payment                                                                  |
  | lastPurchaseState | Integer   | 1         | The purchase status of the last automatic payment (0: purchase completed, 1: cancellation completed)           |
* **Example:**

  | `HTTP/1.1` `200` `OKContent-type: application/json;charset=UTF-8{    "consumptionState": 0,    "developerPayload": "developerPayload",    "purchaseState": 0,    "purchaseTime": 1345678900000,    "purchaseId": "17070421461015116878",    "acknowledgeState": 0}` |
  | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

  With the following conditions, you can determine whether the customer has the right to use the content of Monthly auto-renewal product.

  * If the current time is smaller than or equal to expiryTime(the use end time of purchased in-app) and lastPurchaseState(the purchase status of the last automatic payment) is 0 (the purchase completed)\
    Ex) expiryTime >= current time AND lastPurchaseState == 0

#### acknowledgePurchase (Acknowledge purchased in-app product)  <a href="#onestoreiapserverapi-acknowledgepurchase-acknowledgepurchasedin-appproduct" id="onestoreiapserverapi-acknowledgepurchase-acknowledgepurchasedin-appproduct"></a>

* **Desc :** It changes the status of purchased Managed product or Monthly auto-renewal product into the ‘acknowledged’ status.
* **URI :** https\://{host}/v6/apps/{packageName}/purchases/all/products/{productId}/{purchaseToken}/acknowledge
* **Method :** POST
* **Request Parameter :** Path Variable format
  * String packageName : Package name of the app that calls API (data size : 128)
  * String productId : In-app ID (data size : 150)
  * String purchaseToken : Purchase token (data size : 20)
* **Request Header :**

  | Parameter Name | Data Type | Required | Description                                                 |
  | -------------- | --------- | -------- | ----------------------------------------------------------- |
  | Authorization  | String    | true     | access\_token that has been issued through Access Token API |
  | Content-Type   | String    | true     | application/json                                            |
* **Example**

  | `Request.setHeader("Authorization", "Bearer 680b3621-1234-1234-1234-8adfaef561b4");Request.setHeader("Content-Type", "application/json");` |
  | ------------------------------------------------------------------------------------------------------------------------------------------ |
* **Request Body** : JSON format

  | Element Name     | Data Type | Required | Description |
  | ---------------- | --------- | -------- | ----------- |
  | developerPayload | String    | false    | <p><br></p> |
* **Example :**

  | `{    "developerPayload": "your payload"}` |
  | ------------------------------------------ |
* **Response Body :** JSON 형식

  It returns the response in the following format to allow for a more intuitive determination of the process completion when API processing is successful.\
  However, when the API processing fails, it returns the standard error response.

  | Element Name | Data Type | Data Size | Description      |
  | ------------ | --------- | --------- | ---------------- |
  | code         | String    | -         | Response code    |
  | message      | String    | -         | Response message |
  | result       | Object    | -         | <p><br></p>      |
* **Example :**&#x20;

  | `HTTP/1.1` `200` `OKContent-type: application/json;charset=UTF-8{    "result"` `: {        "code"` `: "Success",        "message"` `: "Request has been completed successfully."    }}` |
  | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

  ONE store shall automatically cancel the purchase, which has not been called by acknowledgePurchase API within 3 days.

  Accordingly, the developer MUST call this API and then he/she can process through SDK API or server API.

  However, the purchase called by consumePurchase API will be considered ‘acknowledged’ and it will not be cancelled.

#### consumePurchase (Consume purchased in-app product) <a href="#onestoreiapserverapi-consumepurchase-consumepurchasedin-appproduct" id="onestoreiapserverapi-consumepurchase-consumepurchasedin-appproduct"></a>

* **Desc :** It changes the status of purchased Managed product into the ‘consumed’ status.
* **URI :** https\://{host}/v6/apps/{packageName}/purchases/inapp/products/{productId}/{purchaseToken}/consume
* **Method :** POST
* **Request Parameter :** Path Variable format
  * String packageName : Package name of the app that calls API (data size : 128)
  * String productId : In-app ID (data size : 150)
  * String purchaseToken : Purchase token (data size : 20)
* **Request Header :**

  | Parameter Name | Data Type | Required | Description                                                 |
  | -------------- | --------- | -------- | ----------------------------------------------------------- |
  | Authorization  | String    | true     | access\_token that has been issued through Access Token API |
  | Content-Type   | String    | true     | application/json                                            |
* **Example**

  | `Request.setHeader("Authorization", "Bearer 680b3621-1234-1234-1234-8adfaef561b4");Request.setHeader("Content-Type", "application/json");` |
  | ------------------------------------------------------------------------------------------------------------------------------------------ |
* **Request Body** : JSON format

  | Element Name     | Data Type | Required | Description |
  | ---------------- | --------- | -------- | ----------- |
  | developerPayload | String    | false    | <p><br></p> |
* **Response Body :** JSON format&#x20;

  It returns the response in the following format to allow for a more intuitive determination of the process completion when API processing is successful.\
  However, when the API processing fails, it returns the standard error response.

  | Element Name | Data Type | Data Size | Description      |
  | ------------ | --------- | --------- | ---------------- |
  | code         | String    | -         | Response code    |
  | message      | String    | -         | Response message |
  | result       | Object    | -         | <p><br></p>      |
* **Example :**&#x20;

  | `HTTP/1.1` `200` `OKContent-type: application/json;charset=UTF-8{    "result"` `: {        "code"` `: "Success",        "message"` `: "Request has been completed successfully."    }}` |
  | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

#### cancelRecurringPurchase (Request to cancel automatic payment))  <a href="#onestoreiapserverapi-cancelrecurringpurchase-requesttocancelautomaticpayment" id="onestoreiapserverapi-cancelrecurringpurchase-requesttocancelautomaticpayment"></a>

* **Desc :**&#x49;t requests the cancellation of automatic payment of Monthly auto-renewal product.
* **URI :** https\://{host}/v6/apps/{packageName}/purchases/auto/products/{productId}/{purchaseToken}/cancel
* **Method :** POST
* **Request Parameter :** Path Variable format
  * String packageName : Package name of the app that calls API (data size : 128)
  * String productId : In-app ID (data size : 150)
  * String purchaseToken : Purchase token (data size : 20)
* **Request Header :**

  | Parameter Name | Data Type | Required | Description                                                 |
  | -------------- | --------- | -------- | ----------------------------------------------------------- |
  | Authorization  | String    | true     | access\_token that has been issued through Access Token API |
  | Content-Type   | String    | true     | application/json                                            |
* **Example**

  | `Request.setHeader("Authorization", "Bearer 680b3621-1234-1234-1234-8adfaef561b4");Request.setHeader("Content-Type", "application/json");` |
  | ------------------------------------------------------------------------------------------------------------------------------------------ |
* **Request Body :** N/A
* **Response Body :** JSON format&#x20;

  It returns the response in the following format to allow for a more intuitive determination of the process completion when API processing is successful. However, when the API processing fails, it returns the standard error response.

  | Element Name | Data Type | Data Size | Description      |
  | ------------ | --------- | --------- | ---------------- |
  | code         | String    | -         | Response code    |
  | message      | String    | -         | Response message |
  | result       | Object    | -         | <p><br></p>      |
* **Example :**&#x20;

  | `HTTP/1.1` `200` `OKContent-type: application/json;charset=UTF-8{    "result"` `: {        "code"` `: "Success",        "message"` `: "Request has been completed successfully."    }}` |
  | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

#### reactiveRecurringPurchase (Request to cancel the automatic payment cancellation)  <a href="#onestoreiapserverapi-reactiverecurringpurchase-requesttocanceltheautomaticpaymentcancellation" id="onestoreiapserverapi-reactiverecurringpurchase-requesttocanceltheautomaticpaymentcancellation"></a>

* **Desc :** It cancels the request for the cancellation of automatic payment of Monthly auto-renewal product.
* **URI :** https\://{host}/v6/apps/{packageName}/purchases/auto/products/{productId}/{purchaseToken}/reactivate
* **Method :** POST
* **Request Parameter :** Path Variable format
  * String packageName : Package name of the app that calls API (data size : 128)
  * String productId : In-app ID (data size : 150)
  * String purchaseToken : Purchase token (data size : 20)
* **Request Header :**

  | Parameter Name | Data Type | Required | Description                                                 |
  | -------------- | --------- | -------- | ----------------------------------------------------------- |
  | Authorization  | String    | true     | access\_token that has been issued through Access Token API |
  | Content-Type   | String    | true     | application/json                                            |
* **Example**

  | `Request.setHeader("Authorization", "Bearer 680b3621-1234-1234-1234-8adfaef561b4");Request.setHeader("Content-Type", "application/json");` |
  | ------------------------------------------------------------------------------------------------------------------------------------------ |
* **Request Body :** N/A
* **Response Body :** JSON format

  It returns the response in the following format to allow for a more intuitive determination of the process completion when API processing is successful. However, when the API processing fails, it returns the standard error response.

  | Element Name | Data Type | Data Size | Description      |
  | ------------ | --------- | --------- | ---------------- |
  | code         | String    | -         | Response code    |
  | message      | String    | -         | Response message |
  | result       | Object    | -         | <p><br></p>      |
* **Example :**&#x20;

  | `HTTP/1.1` `200` `OKContent-type: application/json;charset=UTF-8{    "result"` `: {        "code"` `: "Success",        "message"` `: "Request has been completed successfully."    }}` |
  | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

#### getVoidedPurchases (Check purchase cancellation details)  <a href="#onestoreiapserverapi-getvoidedpurchases-checkpurchasecancellationdetails" id="onestoreiapserverapi-getvoidedpurchases-checkpurchasecancellationdetails"></a>

* **Desc :**&#x49;t checks the purchase cancellation details.
* **URI :** https\://{host}/v6/apps/{packageName}/voided-purchases
* **Method :** GET
* **Request Parameter :** Path Variable format
  * String packageName : Package name of the app that calls API (data size : 128)
* **Request Parameter (Optional) :** Query String format<br>
  * String continuationKey : ONE store server returns this value if there are numerous purchase cancellations.

    If there is continuationKey in the response, you can receive additional purchase cancellation histories if you call up getVoidedPurchases again and send continuationKey (data size: 41).
  * String startTime : The search start time of purchase cancellation date(milliseconds)

    The start time can be set until only one month prior to the current time, and if startTime is used alone, endTime will be set until one month after startTime (data size: 13).
  * String endTime : The search end time of purchase cancellation date (milliseconds).

    The end time cannot be bigger than the current time, and if endTime is used alone, startTime will be set until one month prior to endTime.
  * unsigned integer maxResults : The default maximum number of searches is 100 (data size: 3)
* **Request Header :**

  | Parameter Name | Data Type | Required | Description                                                 |
  | -------------- | --------- | -------- | ----------------------------------------------------------- |
  | Authorization  | String    | true     | access\_token that has been issued through Access Token API |
  | Content-Type   | String    | true     | application/json                                            |
* **Example**

  | `Request.setHeader("Authorization", "Bearer 680b3621-1234-1234-1234-8adfaef561b4");Request.setHeader("Content-Type", "application/json");` |
  | ------------------------------------------------------------------------------------------------------------------------------------------ |
* **Request Body :** 없음
* **Response Body :**

  | Element Name       | Data Type   | Data Size | Description                                                                                                                                                                                                            |
  | ------------------ | ----------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | continuationKey    | String      | 41        | It returns when the number of purchase cancellations is higher than the maximum number of searches. After that, if you set and call continuationKey, which has been received upon request, you can search the history. |
  | voidedPurchaseList | <p><br></p> | -         | <p><br></p>                                                                                                                                                                                                            |
  | purchaseId         | String      | 20        | Purchase ID                                                                                                                                                                                                            |
  | purchaseTime       | Long        | 13        | Purchase time (ms)                                                                                                                                                                                                     |
  | voidedTime         | Long        | 13        | Purchase cancellation time (ms)                                                                                                                                                                                        |
  | purchaseToken      | String      | 20        | Purchase token                                                                                                                                                                                                         |
  | marketCode         | String      | -         | Market identification code                                                                                                                                                                                             |
* **Example :**&#x20;

  | `HTTP/1.1` `200` `OKContent-type: application/json;charset=UTF-8{    "continuationKey": "continuationKey",    "voidedPurchaseList ": [        {            "purchaseId": "19062709124410111299",            "purchaseTime": 1345678900000,            "voidedTime": 1345688900000,            "purchaseToken": "19062709124410111299",            "marketCode": "MKT_ONE"        },        {            "purchaseId": "19062709124410111300",            "purchaseTime": 1345679900000,            "voidedTime": 1345878900000,            "purchaseToken": "19062709124410111299",            "marketCode": "MKT_ONE"        }    ]}` |
  | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

### **Standard Response Specifications**  <a href="#onestoreiapserverapi-standardresponsespecifications" id="onestoreiapserverapi-standardresponsespecifications"></a>

#### Standard response code <a href="#onestoreiapserverapi-standardresponsecode" id="onestoreiapserverapi-standardresponsecode"></a>

| Code                       | Message                                                                               | Description                              | HTTP Status Code                      | 대상 API                                                                                                  |
| -------------------------- | ------------------------------------------------------------------------------------- | ---------------------------------------- | ------------------------------------- | ------------------------------------------------------------------------------------------------------- |
| AccessBlocked              | The request was blocked.                                                              | 요청이 차단되었습니다.                             | 403 - Fobidden                        | Common                                                                                                  |
| AccessTokenExpired         | Access token has expired.                                                             | Access 토큰이 만료되었습니다.                      | 401 - Unauthorized                    | Common                                                                                                  |
| DeveloperPayloadNotMatch   | The request developerPayload does not match the value passed in the purchase request. | 구매요청 시 전달된 developerPayload값과 일치하지 않습니다. | 400 - Bad Request                     | <p>acknowledgePurchase<br>consumePurchase</p>                                                           |
| InternalError              | An undefined error has occurred.                                                      | 정의되지 않은 오류가 발생하였습니다.                     | 500 - Internal Server Error           | Common                                                                                                  |
| InvalidAccessToken         | Access token is invalid.                                                              | Access 토큰이 유효하지 않습니다.                    | 401 - Unauthorized                    | Common                                                                                                  |
| InvalidAuthorizationHeader | Authorization header is invalid.                                                      | Authorization 헤더의 값이 유효하지 않습니다.          | 400 - Bad Request                     | Common                                                                                                  |
| InvalidConsumeState        | The purchase consumption status cannot be changed or has already been changed.        | 소비상태 변경이 불가하거나, 이미 변경완료 되었습니다.           | 409 - Conflict                        | consumePurchase                                                                                         |
| InvalidContentType         | The request content-type is invalid.                                                  | 잘못된 Content Type 입니다.                    | 415 - Unsupported Media Type          | Common                                                                                                  |
| InvalidPurchaseState       | Purchase history does not exist or is not completed.                                  | 구매내역이 존재하지 않거나, 구매완료 상태가 아닙니다.           | 409 - Conflict                        | <p>acknowledgePurchase<br>consumePurchase</p>                                                           |
| InvalidRequest             | Request parameters are invalid. \[ field1, field2, ... ]                              | 입력값이 유효하지 않습니다. \[ field1, field2, ... ] | 400 - Bad Request                     | Common                                                                                                  |
| MethodNotAllowed           | HTTP method not supported.                                                            | 지원하지 않는 HTTP Method 입니다.                 | 405 - Method Not Allowed              | Common                                                                                                  |
| NoSuchData                 | The requested data could not be found.                                                | 조회된 결과값이 존재하지 않습니다.                      | 404 - Not Found                       | <p>getPurchaseDetails<br>getRecurringPurchaseDetails</p>                                                |
| RequiredValueNotExist      | Request parameters are required. \[ field1, field2, ... ]                             | 필수값이 존재하지 않습니다. \[ field1, field2, ... ] | 400 - Bad Request                     | Common                                                                                                  |
| ResourceNotFound           | The requested resource could not be found.                                            | 요청한 자원이 존재하지 않습니다.                       | 404 - Not Found                       | Common                                                                                                  |
| ServiceMaintenance         | System maintenance is in progress.                                                    | 서비스 점검중입니다.                              | 503 - Service Temporarily Unavailable | Common                                                                                                  |
| Success                    | The request has been completed successfully.                                          | 정상처리 되었습니다.                              | 200 - Success                         | <p>acknowledgePurchase<br>consumePurchase<br>cancelRecurringPurchase<br>reactivateRecurringPurchase</p> |
| UnauthorizedAccess         | Not authorized to this API.                                                           | 해당 API에 접근권한이 없습니다.                      | 403 - Fobidden                        | Common                                                                                                  |

#### Standard error response specifications <a href="#onestoreiapserverapi-standarderrorresponsespecifications" id="onestoreiapserverapi-standarderrorresponsespecifications"></a>

Server API returns the standard error response in the same format as the example below when the error occurs other than the normal response. Refer to the following content.

* **Response Body :** JSON format

  | Element Name | Data Type | Data Size | Description      |
  | ------------ | --------- | --------- | ---------------- |
  | code         | String    | -         | Response code    |
  | message      | String    | -         | Response message |
  | result       | Object    | -         | <p><br></p>      |
* **Example**

  | `HTTP/1.1` `400` `Bad RequestContent-type: application/json;charset=UTF-8{    "error"` `: {        "code"` `: "NoSuchData",        "message"` `: "The requested data could not be found."    }}` |
  | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |

### **Common Code**  <a href="#onestoreiapserverapi-commoncode" id="onestoreiapserverapi-commoncode"></a>

#### **In-app type code**  <a href="#onestoreiapserverapi-in-apptypecode" id="onestoreiapserverapi-in-apptypecode"></a>

| Code  | Name                         | Description                                    |
| ----- | ---------------------------- | ---------------------------------------------- |
| inapp | Managed Product              | Consumable/non-consumable/non-renewable in-app |
| auto  | Monthly auto-renewal product | Monthly auto-renewal in-app                    |
| all   | All in-apps                  | Managed product + Monthly auto-renewal product |

#### Market identification code  <a href="#onestoreiapserverapi-marketidentificationcode" id="onestoreiapserverapi-marketidentificationcode"></a>

| Code     | Name      | Description                          |
| -------- | --------- | ------------------------------------ |
| MKT\_ONE | ONE store | ONE store market identification code |
| MKT\_STM | Storm+    | Storms+ market identification code   |

<br>

<br>
