ONE store IAP Server API (API V7)
Overview
The 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 Domain
The Host Domain used in this document is as follows:
Sandbox (development)
Commercial
Market Classification
The Market Classification Code (x-market-code) has been added to the request header.
For ONE store Global Platform services, the header should include the acquired Market Classification Code when utilizing the server API.
If the Market Classification Code is absent, it will be treated as an app for Korea.
<Example>
MKT_ONE
Korea
MKT_GLB
Global
The criteria for the time provided by server API responses vary according to the market segmentation code.
MKT_ONE : UTC+09
MKT_GLB : UTC+00
ONE store OAuth
OAuth Overview
OAuth authentication is necessary for interworking with ONE store Server Open API.
Understanding ONE store OAuth v2
AccessToken is the value that can be 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.
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
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.
'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
OAuth API Details
Check client_id & client_secret
The values for Client_id
and Client_secret
can be found in the "License Management" menu.
Issue AccessToken
URI : /v7/oauth/token
Method: POST
Request Parameter: Form format
Parameter Name
Description
Example
client_id
Typically the same as packageName
0000042301
client_secret
The client secret value that has been issued when the app is registered on the Developer Center.
vxIMAGcVz3DAx20uDBr/IDWNJAPNHFl7YruF4uxB6BI=
grant_type
The fixed value
client_credentials
Request Header :
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
x-market-code
x-market-code: MKT_GLB
Example
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
Provides the bearer method only
expires_in
Integer
10
Token expiration period, unit: second(s)
scope
String
1024
Token use range
Example:
Example of issuance:
AccessToken in the review (development) and commercial environments is managed independently, and therefore you must manage AccessToken separately per environment.
Server API Details
getPurchaseDetails (Check purchased in-app product details)
Desc: Checks the details of purchased ONE store Managed Products. You must search the details by using the 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 : /v7/apps/{clientId}/purchases/inapp/products/{productId}/{purchaseToken}
Method : GET
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Request Body : N/A
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)
quantity
Integer
2
The 'consume' status of purchased in-app (0: not consumed, 1: consumed)
Example:
getRecurringPurchaseDetails (Check purchased monthly auto-renewal product details)
Desc: Checks the automatic payment status of purchased ONE store Monthly auto-renewal products and the details of the last purchase status. You must check them by using the 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 : /v7/apps/{clientId}/purchases/auto/products/{productId}/{purchaseToken}
Method : GET
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
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 or not the automatic payment was made after the end time has been exceeded.
cancelReason
Integer
1
Reasons for cancellation (0: cancellation by the user 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 :
With the following conditions, you can determine whether the user has the right to use the content of the 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 (Confirm purchased in-app products)
Desc : Changes the status of purchased managed product or monthly auto-renewal product into the 'acknowledged' status.
URI : https://{host}/v7/apps/{clientId}/purchases/all/products/{productId}/{purchaseToken}/acknowledge
Method : POST
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Response Body : JSON forat
Element Name
Data Type
Required
Description
developerPayload
String
false
Example :
Response Body : JSON format The response is returned 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
-
Example :
ONE store shall automatically cancel the purchase, which has not been called by acknowledgePurchase API within 3 days.
Therefore, 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 canceled.
consumePurchase (Consume purchased in-app products)
Desc : Changes the status of purchased Managed product into the 'consumed' status.
URI : /v7/apps/{clientId}/purchases/inapp/products/{productId}/{purchaseToken}/consume
Method : POST
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Request Body : JSON format
Element Name
Data Type
Required
Description
developerPayload
String
false
Example :
Response Body : JSON 형식 The response is returned 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
-
Example :
cancelRecurringPurchase (Request to cancel automatic payment)
Desc : Requests the cancellation of automatic payment of monthly auto-renewal products. If using the purchaseToken of a subscription product, a 'NoSuchData' response is sent.
URI : /v7/apps/{clientId}/purchases/auto/products/{productId}/{purchaseToken}/cancel
Method : POST
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Request Body : N/A
Response Body : JSON format The response is returned 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
-
Example :
reactiveRecurringPurchase (Request to cancel the automatic payment cancellation)
Desc : Cancels the request for the cancellation of automatic payment of Monthly auto-renewal product. If using the purchaseToken of a subscription product, a 'NoSuchData' response is sent.
URI : /v7/apps/{clientId}/purchases/auto/products/{productId}/{purchaseToken}/reactivate
Method : POST
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Request Body : N/A
Response Body : JSON format The response is returned 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
-
Example :
getVoidedPurchases (Check purchase cancellation details)
Desc : Checks the purchase cancellation details.
URI : /v7/apps/{clientId}/voided-purchases
Method : GET
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
Request Parameter (Optional) : Query String format
String continuationKey: The ONE store server returns this value if there are numerous purchase cancellations.If there is a continuationKey in the response, call getVoidedPurchases again. 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, the 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 NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Request Body : N/A
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
-
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 :
getSubscriptionDetail (Check subscription details)
Desc : Check detailed information of subscriptions.
URI : /v7/apps/{clientId}/purchases/subscription/products/{productId}/{purchaseToken}
Method : GET
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Request Body : N/A
Response Body :
Element Name
Data Type
Data Size
Description
acknowledgementState
Integer
1
Purchase acknowledgement status (0: not acknowledged, 1: acknowledged)
developerPayload
String
200
Unique billing identifier provided by the developer
autoRenewing
boolean
-
Renewal status of next payment
Request for cancellation, cancellation, expiration : false
Remaining : true
paymentState
Integer
1
Subscription payment status
null: Expired
0: Payment not completed
1: Payment completed after payment request
2: Processed as a free period
3: Processed as DFERRED option during product upgrade/downgrade
priceAmount
String
-
Price
priceAmountMicros
Long
-
Price * 1 million
nextPriceAmount
String
-
Next purchase price
nextPriceAmountMicros
Long
-
Next purchase price * 1 million
nextPaymentTimeMillis
Long
13
Time of next purchase (ms)
priceCurrencyCode
String
-
Currency code (KRW fixed)
countryCode
String
-
Country code (KR fixed)
startTimeMillis
Long
13
Time of subscription start (first payment) (ms)
expiryTimeMillis
Long
13
Time of subscription expiration (ms)
pauseStartTimeMillis
Long
13
Subscription temporarily paused Pause start date (ms) - Only for subscriptions where reservation of pause or temporarily paused statuses exist
pauseEndTimeMillis
Long
13
Subscription temporarily paused Pause end date(ms) - Only for subscriptions where reservation of pause or temporarily paused statuses exist
Long
13
Re-subscription after temporary paused
Normal subscription: null
Reservation/confirmation of pause, currently temporarily paused: Next payment date + Pause date
linkedPurchaseToken
String
20
Previous purchaseToken when changing the subscription product - null, if not changed
lastPurchaseId
String
20
Last purchase ID
cancelledTimeMillis
Long
13
Time of subscription cancellation (ms)
cancelReason
Integer
1
Reason for cancellation
0 : User request
1 : Other|
promotionPrice
Object
-
Promotion price information
promotionPrice.promotionPrice
String
-
Promotion price
promotionPrice.promotionPriceMicros
Long
-
Promotion price information * 1 million
promotionPrice.promotionPeriod
Int
-
Promotion period
priceChange
Object
-
Details of price change
priceChange.seq
Integer
-
Price change sequence
priceChange.previousPrice
String
-
Previous price
priceChange.previousPriceMicros
Long
-
Previous price * 1 million
priceChange.newPrice
String
-
New price
priceChange.newPriceMicros
Long
-
New price * 1 million
priceChange.applyTimeMillis
Long
13
Time applied (ms)
priceChange.agreement
Boolean
-
Agreement to price change
priceChange.agreementDueDateTimeMillis
Long
13
Expiration time of agreement to price change (ms) Value = price change date +7+30 days Users can agree to the first automatic payment after the expiration date of agreement.
Example :
cancelSubscription (Request to cancel subscription automatic payment)
Desc : Requests the cancellation of automatic payment of subscription products. However, if the subscription status is paused, payment is suspended, or the account is held at the time of request, immediate cancellation is requested.
URI : /v7/apps/{clientId}/purchases/subscription/products/{productId}/{purchaseToken}/cancel
Method : POST
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Request Body : N/A
Response Body : JSON format The response is returned 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
-
Example :
reactivateSubscription (Request to cancel the subscription automatic payment cancellation)
Desc : Cancels the request for the cancellation of automatic payment for subscription products. However, in the case immediate cancellation was done, the request for cancellation cannot be canceled.
URI : /v7/apps/{clientId}/purchases/subscription/products/{productId}/{purchaseToken}/reactivate
Method : POST
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Request Body : N/A
Response Body : JSON format
The response is returned 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
-
Example :
deferSubscription (Request for subscription payment extension)
Desc : The next payment date for subscription products is deferred.
URI : /v7/apps/{clientId}/purchases/subscription/products/{productId}/{purchaseToken}/defer
Method : POST
Request Parameter : Path Variable format
String clientId : Client ID of the app that calls API (Data Size : 128)
String productId : Product ID (Data Size : 150)
String purchaseToken : Purchase token (Data Size : 20)
Request Header:
Parameter NameData TypeRequiredDescriptionAuthorization
String
true
Access Token API를 통해 발급받은 access_token
Content-Type
String
true
application/json
x-market-code
String
false
마켓 구분 코드
Example
Request Body : JSON format
Parameter Name
Data Type
Required
Description
deferPeriod
Integer
true
Extension period
Commercial: Daily (1-365)
Sandbox: Minutes|
Example :
Response Body : JSON format The response is returned 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
-
Example :
Standard Response Specifications
Standard Response Code
Code
Message
Description
HTTP Status Code
Target API
AccessBlocked
The request was blocked.
The request was blocked.
403 - Forbidden
Common
AccessTokenExpired
Access token has expired.
Access token has expired.
401 - Unauthorized
Common
BadRequest
The request is invalid.
The request is invalid.
400 - Bad Request
Common
DeveloperPayloadNotMatch
The request developerPayload does not match the value passed in the purchase request.
The request developerPayload does not match the value passed in the purchase request.
400 - Bad Request
acknowledgePurchaseconsumePurchase
InternalError
An undefined error has occurred.
An undefined error has occurred.
500 - Internal Server Error
Common
InvalidAccessToken
Access token is invalid.
Access token is invalid.
401 - Unauthorized
Common
InvalidAuthorizationHeader
Authorization header is invalid.
Authorization header is invalid.
400 - Bad Request
Common
InvalidConsumeState
The purchase consumption status cannot be changed or has already been changed.
The purchase consumption status cannot be changed or has already been changed.
409 - Conflict
consumePurchase
InvalidContentType
The request content-type is invalid.
The request content-type is invalid.
415 - Unsupported Media Type
Common
InvalidPurchaseState
Purchase history does not exist or is not completed.
Purchase history does not exist or is not completed.
409 - Conflict
acknowledgePurchaseconsumePurchase
InvalidRequest
Request parameters are invalid. [ field1, field2, ... ]
Request parameters are invalid. [ field1, field2, ... ]
400 - Bad Request
Common
MethodNotAllowed
HTTP method not supported.
HTTP method not supported.
405 - Method Not Allowed
Common
NoSuchData
The requested data could not be found.
The requested data could not be found.
404 - Not Found
getPurchaseDetailsgetRecurringPurchaseDetails
RequiredValueNotExist
Request parameters are required. [ field1, field2, ... ]
Request parameters are required. [ field1, field2, ... ]
400 - Bad Request
Common
ResourceNotFound
The requested resource could not be found.
The requested resource could not be found.
404 - Not Found
Common
ServiceMaintenance
System maintenance is in progress.
System maintenance is in progress.
503 - Service Temporarily Unavailable
Common
Success
The request has been completed successfully.
The request has been completed successfully.
200 - Success
acknowledgePurchaseconsumePurchasecancelRecurringPurchasereactivateRecurringPurchase
UnauthorizedAccess
Not authorized to access this API.
Not authorized to access this API.
403 - Forbidden
Common
Standard Error Response Specifications
The 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.
Response Body : JSON format
Element Name
Data Type
Data Size
Description
code
String
-
Response code
message
String
-
Response message
error
Object
-
Example
Common Code
In-app Type Code
Code
Name
Description
inapp
Managed product
Consumable/non-consumable/non-renewable products
auto
Monthly auto-renewal product
Monthly auto-renewal (automatic payment) products
subscription
Subscription product
Subscription (automatic payment) products
all
All in-apps
Managed product + Monthly auto-renewal products
Last updated