Query purchases
GET/v1/client/android/purchases
Query purchases
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 purchases
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
purchases object[]required
purchase stringrequired
signature stringrequired
{
"purchases": [
{
"purchase": "string",
"signature": "string"
}
]
}
Loading...