Google Play Integration FAQs
1. What data does Coda get access to upon integrating Google Play with Coda Portal?
After successful integration, Coda will be granted read-only access to retrieve the in-app product listings. Specifically, Coda will get permission to hit the following Google Play API endpoint: https://developers.google.com/android-publisher/api-ref/rest/v3/inappproducts. This API enables Coda to fetch a list of in-app SKUs, along with their corresponding prices across different countries where the title is available
2. What does the API response look like for the v3/inappproducts endpoint
Please refer to the Google Play Developer API documentation for full details. However, a sample response from the v3/inappproducts API will look like below:
[
{
"kind": "androidpublisher#inappproductsListResponse",
"inappproduct": [
{
"packageName": "com.yourapplication.main",
"sku": "20 diamonds",
"status": "active",
"purchaseType": "managedUser",
"defaultPrice": {
"priceMicros": "1500000000",
"currency": "KRW"
},
"prices": {
"AU": {
"priceMicros": "1890000",
"currency": "AUD"
},
"ID": {
"priceMicros": "16000000000",
"currency": "IDR"
},
"SG": {
"priceMicros": "1490000",
"currency": "SGD"
},
"TH": {
"priceMicros": "35000000",
"currency": "THB"
},
"TR": {
"priceMicros": "39990000",
"currency": "TRY"
},
"US": {
"priceMicros": "990000",
"currency": "USD"
}
},
"listings": {
"en-US": {
"title": "20 diamonds",
"description": "20 diamonds"
}
},
"defaultLanguage": "en-US",
"managedProductTaxesAndComplianceSettings": {
"eeaWithdrawalRightType": "WITHDRAWAL_RIGHT_DIGITAL_CONTENT"
}
},
..........
]3. How is the data received from Google Play stored by Coda?
All the data we receive from Google Play is stored in accordance with the standard terms and conditions agreed upon between the Publisher and Coda. The integration only grants Coda permission to access publicly available information, specifically, the prices of in-app SKUs visible to end users. No other financial information is read, accessed, or stored on Coda's end. As a result, we do not foresee any risks associated with Publisher integrating their Google Play account with Coda.
Last updated
Was this helpful?