Get console subscription details
GET/console/organizations/:organizationId/projects/:projectId/device/:deviceId/subscriptions
Get console subscription details
Request
Path Parameters
Query Parameters
Responses
- 200
Returns subscription details
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- Array [
- ]
- ]
- ]
details object[]required
The product ID
Type of product, e.g., inapp or subs
The title of the product
The name of the product
The description of the product
SKU details token
Serialized document ID
subscriptionOfferDetails object[]nullablerequired
Subscription offer details
Base plan ID
Offer ID
Offer ID token
pricingPhases object[]required
Pricing phases details
Formatted price of the product
Price in micro-units
ISO 4217 currency code for the price
Billing period (e.g., P1W for 1 week)
Number of billing cycles
Recurrence mode of the pricing phase
Offer tags
installmentPlanDetails objectnullable
Number of commitment payments
Number of subsequent commitment payments
oneTimePurchaseOfferDetails objectnullable
Formatted price of the product
Price in micro-units
ISO 4217 currency code for the price
Offer ID
Offer tags
limitedQuantityInfo objectnullable
Maximum quantity available for the product
Remaining quantity available for the product
The applicationId associated with the app, also referred to as packageName.
{
"details": [
{
"productId": "string",
"type": "string",
"title": "string",
"name": "string",
"description": "string",
"skuDetailsToken": "string",
"serializedDocid": "string",
"subscriptionOfferDetails": [
{
"basePlanId": "string",
"offerId": "string",
"offerIdToken": "string",
"pricingPhases": [
{
"formattedPrice": "string",
"priceAmountMicros": 0,
"priceCurrencyCode": "string",
"billingPeriod": "string",
"billingCycleCount": 0,
"recurrenceMode": 0
}
],
"offerTags": [
"string"
],
"installmentPlanDetails": {
"commitmentPaymentsCount": 0,
"subsequentCommitmentPaymentsCount": 0
}
}
],
"oneTimePurchaseOfferDetails": {
"formattedPrice": "string",
"priceAmountMicros": 0,
"priceCurrencyCode": "string",
"offerId": "string",
"offerTags": [
"string"
]
},
"limitedQuantityInfo": {
"maximumQuantity": 0,
"remainingQuantity": 0
},
"applicationId": "string"
}
]
}