Added
New `max_units` field
November 6th, 2025
🏷️ API version:
2026-01
You can now retrieve the maximum number of units for each of your app’s subscriptions using the new max_units field on the app_subscriptions query.
query {
app_subscriptions(
app_id: 1234567890
) {
cursor
total_count
subscriptions {
account_id
monthly_price
currency
max_units
}
}
}