Free trial for subscriptions

Hi,

You could achieve this by setting the fixed pricing policy with PRICE 0 or PERCENTAGE 100 and recurring pricing policy with PERCENTAGE 0 or FIXED AMOUNT 0.

Reference on definition of each adjustment type

pricingPolicies: [
        {
          fixed: {
            adjustmentType: PRICE
            adjustmentValue : {
              fixedValue: 0
            },
          }
        },
        {
          recurring: {
            adjustmentType: FIXED_AMOUNT
            adjustmentValue: {
              fixedValue: 0
            }
            afterCycle: 1
          }
        }
      ]

# or

pricingPolicies: [
        {
          fixed: {
            adjustmentType: PRICE
            adjustmentValue : {
              fixedValue: 0
            },
          }
        },
        {
          recurring: {
            adjustmentType: PERCENTAGE
            adjustmentValue: {
              percentage: 0
            }
            afterCycle: 1
          }
        }
      ]

# or

pricingPolicies: [
        {
          fixed: {
            adjustmentType: PERCENTAGE
            adjustmentValue : {
              percentage: 100
            },
          }
        },
        {
          recurring: {
            adjustmentType: FIXED_AMOUNT
            adjustmentValue: {
              fixedValue: 0
            }
            afterCycle: 1
          }
        }
      ]

# or

pricingPolicies: [
        {
          fixed: {
            adjustmentType: PERCENTAGE
            adjustmentValue : {
              percentage: 100
            },
          }
        },
        {
          recurring: {
            adjustmentType: PERCENTAGE
            adjustmentValue: {
              percentage: 0
            }
            afterCycle: 1
          }
        }
      ]