How can I give $1 Trial instead of Free Trial

Hi,
I want to give a $1 trial instead of a Free Trial. Please advise how can I achieve this using Shopify Billing API.

Hi Rishabh,

If there’s a payment required for a “trial” it would be a paid plan, if even just for $1. You could set up a one time purchase of $1 maybe?

You could also give a discount for the first month.

Let’s say for example that your app is normally $10 a month.

To give a free trial of $1 for the first month, add a discount of $9 for a period of 1 month:

discount: {
   amount: '9.00',
   length: {
    interval: 'monthly',
    unit, 1
  }
}

Excuse my pseudocode on the graphql query, I need a Admin GraphQL Chrome Extension to double check my work. But there’s definitely a discount option for creating new subscriptions.