Query purchase history
GET/v1/client/android/purchase-history
Query purchase history
Request
Query Parameters
productType ProductTyperequired
Possible values: [inapp
, subs
]
The type of product.
applicationId stringrequired
The applicationId associated with the app, also referred to as packageName.
Example: com.example.app
artifactId stringrequired
The artifactId of the library used to make the purchase (optional)
Example: android-billing-sdk-drop-in
artifactVersion stringrequired
The version of the library used to make the purchase (optional)
Example: 1.0.20230705123456
Responses
- 200
Successful retrieval of purchase history records
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
purchaseHistories object[]required
A list of purchase history records with their respective signatures.
purchaseHistoryRecord stringrequired
The JSON stringified version of PurchaseHistoryRecordDto.
signature stringrequired
A signature of the purchase data that was signed with the private key of the developer.
{
"purchaseHistories": [
{
"purchaseHistoryRecord": "string",
"signature": "MEUCIQD2..."
}
]
}
Loading...