Learn about other types supported by the app subscriptions API
The monday.com app subscriptions API enables you to read an app's subscription details.
The types below are used by the app subscriptions query and are not independently queryable.
AppSubscriptionDetails
An object containing the app's subscriptions.
| Field | Type | Description | Enum Values |
|---|---|---|---|
| account_id | Int! | The account's unique identifier. | |
| currency | String! | The currency used to make the purchase. | |
| days_left | Int! | The number of days until the subscription ends. | |
| discounts | [SubscriptionDiscount!]! | The discounts granted to the subscription. | |
| end_date | String | An inactive subscription's end date. Returns null for subscriptions with an active status. | |
| max_units | Int | The subscribed unit quantity. Returns null for feature-based plans. | |
| monthly_price | Float! | The subscription's monthly price (after discounts) in the currency used to make the purchase. | |
| period_type | SubscriptionPeriodType! | The subscription's billing period frequency. | monthlyyearly |
| plan_id | String! | The pricing plan's unique identifier. | |
| pricing_version_id | Int! | The pricing version's unique identifier. | |
| renewal_date | String | An active subscription’s renewal date. Returns null for subscriptions with an inactive status. | |
| status | SubscriptionStatus! | The subscription's status. | activeinactive |
SubscriptionDiscount
An object containing details about a single subscription discount.
| Field | Type | Description | Enum Values |
|---|---|---|---|
| discount_model_type | SubscriptionDiscountModelType! | The discount's type. | nominal: dollar amount of the discountpercent: percentage of the discount |
| discount_type | SubscriptionDiscountType! | The discount's frequency. | one_timerecurring |
| value | Int! | The discount's value as a percent. |
