This document lists and describes the types of Real-time developer notifications that you can receive from Google Play.
Encoding
Each publish made to a Cloud Pub/Sub topic contains a single base64-encoded data field.
{
"message": {
"attributes": {
"key": "value"
},
"data": "eyAidmVyc2lvbiI6IHN0cmluZywgInBhY2thZ2VOYW1lIjogc3RyaW5nLCAiZXZlbnRUaW1lTWlsbGlzIjogbG9uZywgIm9uZVRpbWVQcm9kdWN0Tm90aWZpY2F0aW9uIjogT25lVGltZVByb2R1Y3ROb3RpZmljYXRpb24sICJzdWJzY3JpcHRpb25Ob3RpZmljYXRpb24iOiBTdWJzY3JpcHRpb25Ob3RpZmljYXRpb24sICJ0ZXN0Tm90aWZpY2F0aW9uIjogVGVzdE5vdGlmaWNhdGlvbiB9",
"messageId": "136969346945"
},
"subscription": "projects/myproject/subscriptions/mysubscription"
}
After you decode the base64-encoded data field, the DeveloperNotification
contains the following fields:
{
"version": string,
"packageName": string,
"eventTimeMillis": long,
"oneTimeProductNotification": OneTimeProductNotification,
"subscriptionNotification": SubscriptionNotification,
"voidedPurchaseNotification": VoidedPurchaseNotification,
"pendingRefundReviewNotification": PendingRefundReviewNotification,
"testNotification": TestNotification
}
These fields are described in the following table.
| Property name | Value | Description |
|---|---|---|
| version | string | The version of this notification. Initially, this is "1.0". This version is distinct from other version fields. |
| packageName | string | The package name of the application that this notification relates to (for example, `com.some.thing`). |
| eventTimeMillis | long | The timestamp when the event occurred, in milliseconds since the Epoch. |
| subscriptionNotification | SubscriptionNotification | If this field is present, then this notification is related to a subscription, and this field contains additional information related to the subscription. Note that this field is mutually exclusive with pendingRefundReviewNotification, oneTimeProductNotification, voidedPurchaseNotification, and testNotification. |
| oneTimeProductNotification | OneTimeProductNotification | If this field is present, then this notification is related to a one-time purchase, and this field contains additional information related to the purchase. Note that this field is mutually exclusive with pendingRefundReviewNotification, subscriptionNotification, voidedPurchaseNotification, and testNotification. |
| voidedPurchaseNotification | VoidedPurchaseNotification | If this field is present, then this notification is related to a voided purchase, and this field contains additional information related to the voided purchase. Note that this field is mutually exclusive with pendingRefundReviewNotification, oneTimeProductNotification, subscriptionNotification, and testNotification. |
| pendingRefundReviewNotification | PendingRefundReviewNotification | If this field is present, this notification relates to a chargeback request for which you can suggest a resolution. Respond to this notification by calling the `ReviewRefund` API. Note that this field is mutually exclusive with subscriptionNotification, oneTimeProductNotification, voidedPurchaseNotification, and testNotification. |
| testNotification | TestNotification | If this field is present, then this notification is related to a test publish. These are sent only through the Google Play Developer Console. Note that this field is mutually exclusive with pendingRefundReviewNotification, oneTimeProductNotification, subscriptionNotification, and voidedPurchaseNotification. |
SubscriptionNotification
A SubscriptionNotification contains the following fields:
{
"version": string,
"notificationType": int,
"purchaseToken": string
}
| Property name | Value | Description |
|---|---|---|
| version | string | The version of this notification. Initially, this is "1.0". This version is distinct from other version fields. |
| notificationType | int | The notificationType for a subscription can have the following values:
|
| purchaseToken | string | The token provided to the user's device when the subscription was purchased. |
Example
Here's an example of a notification for a new subscription purchase:
{
"version":"1.0",
"packageName":"com.some.thing",
"eventTimeMillis":"1503349566168",
"subscriptionNotification":
{
"version":"1.0",
"notificationType":4,
"purchaseToken":"PURCHASE_TOKEN"
}
}
OneTimeProductNotification
A OneTimeProductNotification contains the following fields:
{
"version": string,
"notificationType": int,
"purchaseToken": string,
"sku": string
}
| Property Name | Value | Description |
|---|---|---|
| version | string | The version of this notification. Initially, this will be "1.0". This version is distinct from other version fields. |
| notificationType | int | The type of notification. It can have the following values:
|
| purchaseToken | string | The token provided to the user's device when purchase was made. |
| sku | string | The purchased one-time product ID (for example, "sword_001") |
Example
Here's an example of a notification for a new one-time purchase:
{
"version":"1.0",
"packageName":"com.some.thing",
"eventTimeMillis":"1503349566168",
"oneTimeProductNotification":
{
"version":"1.0",
"notificationType":1,
"purchaseToken":"PURCHASE_TOKEN",
"sku":"my.sku"
}
}
VoidedPurchaseNotification
A VoidedPurchaseNotification contains the following fields:
| Property Name | Value | Description |
|---|---|---|
|
|
The token associated with the purchase that has been voided. This information is provided to the developer when a new purchase occurs. |
|
|
The unique order ID associated with the transaction that has been voided. For one time purchases, this represents the only order ID generated for the purchase. For auto-renewing subscriptions, a new order ID is generated for each renewal transaction. |
|
|
The
|
|
|
The
Note when the remaining total quantity of a multi-quantity purchase is
refunded, the |
Example
Here's an example of a notification for a new voided purchase:
{
"version":"1.0",
"packageName":"com.some.app",
"eventTimeMillis":"1503349566168",
"voidedPurchaseNotification":
{
"purchaseToken":"PURCHASE_TOKEN",
"orderId":"GS.0000-0000-0000",
"productType":1
"refundType":1
}
}
Consuming VoidedPurchaseNotification
When your RTDN client receives a VoidedPurchaseNotification, note the
following information:
packageName: Identifies the app.eventTimeMillis: Informs you of the time the status change occurred.purchaseToken: The token provided to the user's device when the product was purchased.orderId: Identifies the order associated with the voided transaction.productType: Indicates if the voided purchase was an in-app purchase or a subscription.refundType: Specifies the type of refund that voided the purchase.
PendingRefundReviewNotification
A PendingRefundReviewNotification is sent when a user requests a chargeback
for a purchase, and the request requires developer review. When you
receive this notification, you should evaluate the request and provide a refund
suggestion and purchase usage evidence within 24 hours by calling the
ReviewRefund API.
A PendingRefundReviewNotification contains the following fields:
{
"version": string,
"pendingRefundToken": string,
"orderId": string,
"refundReason": int,
"obfuscatedAccountId": string,
"obfuscatedProfileId": string
}
| Property name | Value | Description |
|---|---|---|
| version | string | The version of this notification. Initially, this is "1.0". This version is distinct from other version fields. |
| pendingRefundToken | string | A unique token that identifies the pending refund request under review. Pass this token when calling the ReviewRefund API. |
| orderId | string | The order ID of the purchase that is subject to the pending refund review. |
| refundReason | int | The reason for the refund request. Pending reviews support only CHARGEBACK (7) as a refund reason. Your code should
handle new reasons as they become available. |
| obfuscatedAccountId | string | (If applicable) The obfuscated developer-specified user account ID that was supplied when the purchase was made. |
| obfuscatedProfileId | string | (If applicable) The obfuscated developer-specified profile ID that was supplied when the purchase was made. |
Example
Here's an example of a pending refund review notification:
{
"version":"1.0",
"packageName":"com.some.thing",
"eventTimeMillis":"1503350156918",
"pendingRefundReviewNotification":
{
"version":"1.0",
"pendingRefundToken":"example-token",
"orderId":"GPA.1234-5678-9012-34567",
"refundReason":7,
"obfuscatedAccountId":"user-account-id",
"obfuscatedProfileId":"user-profile-id"
}
}
TestNotification
A TestNotification contains the following fields:
{
"version": string
}
| Property name | Value | Description |
|---|---|---|
| version | string | The version of this notification. Initially, this is "1.0". This version is distinct from other version fields. |
Example
Here's an example of a test notification:
{
"version":"1.0",
"packageName":"com.some.thing",
"eventTimeMillis":"1503350156918",
"testNotification":
{
"version":"1.0"
}
}