Skip to content

StripeSubscriptionUrl

URLs to manage a Stripe subscription

Fields

essential_monthly_checkout · String! · required · URL to checkout for Essential Monthly plan
essential_yearly_checkout · String! · required · URL to checkout for Essential Yearly plan
group_monthly_checkout · String! · required · URL to checkout for Group Monthly plan
group_yearly_checkout · String! · required · URL to checkout for Group Yearly plan
manage_subscription · String! · required · URL to manage a Stripe subscription
plus_monthly_checkout · String! · required · URL to checkout for Plus Monthly plan
plus_yearly_checkout · String! · required · URL to checkout for Plus Yearly plan
starter_monthly_checkout · String! · required · URL to checkout for Starter Monthly plan
subscription_invoice · String! · required · URL to view a Stripe subscription invoice
update_subscription · String! · required · URL to update a Stripe subscription

Used By

Definition

"""
URLs to manage a Stripe subscription
"""
type StripeSubscriptionUrl {
"""
URL to checkout for Essential Monthly plan
"""
essential_monthly_checkout: String!
"""
URL to checkout for Essential Yearly plan
"""
essential_yearly_checkout: String!
"""
URL to checkout for Group Monthly plan
"""
group_monthly_checkout: String!
"""
URL to checkout for Group Yearly plan
"""
group_yearly_checkout: String!
"""
URL to manage a Stripe subscription
"""
manage_subscription: String!
"""
URL to checkout for Plus Monthly plan
"""
plus_monthly_checkout: String!
"""
URL to checkout for Plus Yearly plan
"""
plus_yearly_checkout: String!
"""
URL to checkout for Starter Monthly plan
"""
starter_monthly_checkout: String!
"""
URL to view a Stripe subscription invoice
"""
subscription_invoice: String!
"""
URL to update a Stripe subscription
"""
update_subscription: String!
}