Subscription Plans
Get all selling plans across all subscription groups
Retrieves a flattened list of all selling plans from all subscription groups in the store. This endpoint provides a consolidated view of every subscription plan available, regardless of which group it belongs to.
Response includes:
- All selling plans with their configurations
- Group information for each plan (groupId and groupName)
- Complete discount and pricing details
- Delivery and billing frequencies
- Member restrictions and settings
- Free trial configurations
Use Cases:
- Build a unified subscription selector
- Compare all available subscription options
- Analyze pricing across all plans
- Find specific plan configurations
- Generate reports on subscription offerings
Differences from /subscription-groups endpoint:
- Returns plans as a flat list, not grouped
- Each plan includes its parent group information
- Easier to search/filter across all plans
- Does not include product/variant assignments
Authentication: Requires valid X-API-Key header
GET
/
api
/
external
/
v2
/
subscription-groups
/
all-selling-plans
Get all selling plans across all subscription groups
curl --request GET \
--url https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans"
headers = {"X-API-Key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch('https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans';
const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}require 'uri'
require 'net/http'
url = URI("https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body[
{
"afterCycle1": 0,
"billingFrequencyCount": 1,
"billingFrequencyInterval": "MONTH",
"discountEnabled": true,
"discountOffer": 10,
"discountType": "PERCENTAGE",
"frequencyCount": 1,
"frequencyDescription": "Save 10% on monthly deliveries",
"frequencyInterval": "MONTH",
"frequencyName": "Delivered Monthly",
"frequencyType": "ON_PURCHASE_DAY",
"groupId": 123456789,
"groupName": "Monthly Coffee Subscription",
"id": "gid://shopify/SellingPlan/111111",
"inventoryPolicyReserve": "ON_SALE",
"maxCycles": null,
"memberOnly": false,
"minCycles": 3,
"planType": "PAY_AS_YOU_GO",
"upcomingOrderEmailBuffer": 3
},
{
"afterCycle1": 0,
"billingFrequencyCount": 1,
"billingFrequencyInterval": "WEEK",
"discountEnabled": true,
"discountOffer": 15,
"discountType": "PERCENTAGE",
"frequencyCount": 1,
"frequencyDescription": "Fresh tea every week with 15% savings",
"frequencyInterval": "WEEK",
"frequencyName": "Weekly Tea Box",
"groupId": 123456790,
"groupName": "Premium Tea Collection",
"id": "gid://shopify/SellingPlan/222222",
"planType": "PAY_AS_YOU_GO"
},
{
"afterCycle1": 0,
"billingFrequencyCount": 3,
"billingFrequencyInterval": "MONTH",
"discountEnabled": true,
"discountOffer": 25,
"discountType": "PERCENTAGE",
"frequencyCount": 1,
"frequencyDescription": "Pay upfront for 3 months and save 25%",
"frequencyInterval": "MONTH",
"frequencyName": "3-Month Prepaid Coffee",
"groupId": 123456789,
"groupName": "Monthly Coffee Subscription",
"id": "gid://shopify/SellingPlan/333333",
"maxCycles": 12,
"payAsYouGoPrepaidBillingFrequencyCount": 3,
"planType": "PAY_AS_YOU_GO_PREPAID",
"repeatingCycle": true,
"repeatingNumberOfCycle": 12
}
][
{
"afterCycle1": 123,
"afterCycle2": 123,
"appstleCycles": [
{
"afterCycle": 3,
"discountType": "PERCENTAGE",
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeProducts": [
{
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeVariantId": 42549172011164
}
],
"freeVariantId": 42549172011164,
"preventDuplicationFreeProduct": true,
"repeatingCycle": true,
"repeatingNumberOfCycle": 6,
"tierRole": "<string>",
"value": 10
}
],
"billingFrequencyCount": 123,
"billingFrequencyInterval": "DAY",
"cutOff": 123,
"defaultSelectedPlan": true,
"deliveryPolicyPreAnchorBehavior": "ASAP",
"discountEnabled": true,
"discountEnabled2": true,
"discountEnabled2Masked": true,
"discountEnabledMasked": true,
"discountOffer": 123,
"discountOffer2": 123,
"discountType": "PERCENTAGE",
"discountType2": "PERCENTAGE",
"fixedBillingDates": [
{
"day": 123,
"month": 123
}
],
"formFieldJson": "<string>",
"freeTrialCount": 123,
"freeTrialEnabled": true,
"freeTrialInterval": "DAY",
"frequencyCount": 123,
"frequencyDescription": "<string>",
"frequencyInterval": "DAY",
"frequencyName": "<string>",
"frequencyNameTranslations": {},
"frequencySequence": 123,
"frequencyType": "ON_PURCHASE_DAY",
"groupId": 123,
"groupName": "<string>",
"id": "<string>",
"idNew": "<string>",
"inventoryPolicyReserve": "ON_FULFILLMENT",
"keepOriginalNextBillingDateAfterTrial": true,
"maxCycles": 123,
"memberExclusiveTags": "<string>",
"memberInclusiveTags": "<string>",
"memberOnly": true,
"minCycles": 123,
"minQuantity": 123,
"nonMemberOnly": true,
"payAsYouGoPrepaidBillingFrequencyCount": 123,
"planType": "PAY_AS_YOU_GO",
"prepaidFlag": "<string>",
"repeatingCycle": true,
"repeatingNumberOfCycle": 123,
"specificDayEnabled": true,
"specificDayValue": 123,
"specificMonthValue": 123,
"upcomingOrderEmailBuffer": 123
}
][
{
"afterCycle1": 123,
"afterCycle2": 123,
"appstleCycles": [
{
"afterCycle": 3,
"discountType": "PERCENTAGE",
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeProducts": [
{
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeVariantId": 42549172011164
}
],
"freeVariantId": 42549172011164,
"preventDuplicationFreeProduct": true,
"repeatingCycle": true,
"repeatingNumberOfCycle": 6,
"tierRole": "<string>",
"value": 10
}
],
"billingFrequencyCount": 123,
"billingFrequencyInterval": "DAY",
"cutOff": 123,
"defaultSelectedPlan": true,
"deliveryPolicyPreAnchorBehavior": "ASAP",
"discountEnabled": true,
"discountEnabled2": true,
"discountEnabled2Masked": true,
"discountEnabledMasked": true,
"discountOffer": 123,
"discountOffer2": 123,
"discountType": "PERCENTAGE",
"discountType2": "PERCENTAGE",
"fixedBillingDates": [
{
"day": 123,
"month": 123
}
],
"formFieldJson": "<string>",
"freeTrialCount": 123,
"freeTrialEnabled": true,
"freeTrialInterval": "DAY",
"frequencyCount": 123,
"frequencyDescription": "<string>",
"frequencyInterval": "DAY",
"frequencyName": "<string>",
"frequencyNameTranslations": {},
"frequencySequence": 123,
"frequencyType": "ON_PURCHASE_DAY",
"groupId": 123,
"groupName": "<string>",
"id": "<string>",
"idNew": "<string>",
"inventoryPolicyReserve": "ON_FULFILLMENT",
"keepOriginalNextBillingDateAfterTrial": true,
"maxCycles": 123,
"memberExclusiveTags": "<string>",
"memberInclusiveTags": "<string>",
"memberOnly": true,
"minCycles": 123,
"minQuantity": 123,
"nonMemberOnly": true,
"payAsYouGoPrepaidBillingFrequencyCount": 123,
"planType": "PAY_AS_YOU_GO",
"prepaidFlag": "<string>",
"repeatingCycle": true,
"repeatingNumberOfCycle": 123,
"specificDayEnabled": true,
"specificDayValue": 123,
"specificMonthValue": 123,
"upcomingOrderEmailBuffer": 123
}
][
{
"afterCycle1": 123,
"afterCycle2": 123,
"appstleCycles": [
{
"afterCycle": 3,
"discountType": "PERCENTAGE",
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeProducts": [
{
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeVariantId": 42549172011164
}
],
"freeVariantId": 42549172011164,
"preventDuplicationFreeProduct": true,
"repeatingCycle": true,
"repeatingNumberOfCycle": 6,
"tierRole": "<string>",
"value": 10
}
],
"billingFrequencyCount": 123,
"billingFrequencyInterval": "DAY",
"cutOff": 123,
"defaultSelectedPlan": true,
"deliveryPolicyPreAnchorBehavior": "ASAP",
"discountEnabled": true,
"discountEnabled2": true,
"discountEnabled2Masked": true,
"discountEnabledMasked": true,
"discountOffer": 123,
"discountOffer2": 123,
"discountType": "PERCENTAGE",
"discountType2": "PERCENTAGE",
"fixedBillingDates": [
{
"day": 123,
"month": 123
}
],
"formFieldJson": "<string>",
"freeTrialCount": 123,
"freeTrialEnabled": true,
"freeTrialInterval": "DAY",
"frequencyCount": 123,
"frequencyDescription": "<string>",
"frequencyInterval": "DAY",
"frequencyName": "<string>",
"frequencyNameTranslations": {},
"frequencySequence": 123,
"frequencyType": "ON_PURCHASE_DAY",
"groupId": 123,
"groupName": "<string>",
"id": "<string>",
"idNew": "<string>",
"inventoryPolicyReserve": "ON_FULFILLMENT",
"keepOriginalNextBillingDateAfterTrial": true,
"maxCycles": 123,
"memberExclusiveTags": "<string>",
"memberInclusiveTags": "<string>",
"memberOnly": true,
"minCycles": 123,
"minQuantity": 123,
"nonMemberOnly": true,
"payAsYouGoPrepaidBillingFrequencyCount": 123,
"planType": "PAY_AS_YOU_GO",
"prepaidFlag": "<string>",
"repeatingCycle": true,
"repeatingNumberOfCycle": 123,
"specificDayEnabled": true,
"specificDayValue": 123,
"specificMonthValue": 123,
"upcomingOrderEmailBuffer": 123
}
]Headers
API Key for authentication
Query Parameters
API Key (Deprecated - Use X-API-Key header instead)
Response
Successfully retrieved all selling plans
Show child attributes
Show child attributes
Available options:
DAY, WEEK, MONTH, YEAR Available options:
ASAP, NEXT, $UNKNOWN Available options:
PERCENTAGE, FIXED, PRICE Available options:
PERCENTAGE, FIXED, PRICE Show child attributes
Show child attributes
Available options:
DAY, WEEK, MONTH, YEAR Available options:
DAY, WEEK, MONTH, YEAR Show child attributes
Show child attributes
Available options:
ON_PURCHASE_DAY, ON_SPECIFIC_DAY, ON_FIXED_DATES Available options:
ON_FULFILLMENT, ON_SALE, $UNKNOWN Available options:
PAY_AS_YOU_GO, PREPAID, ADVANCED_PREPAID, PAY_AS_YOU_GO_PREPAID ⌘I
Get all selling plans across all subscription groups
curl --request GET \
--url https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans"
headers = {"X-API-Key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch('https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans';
const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}require 'uri'
require 'net/http'
url = URI("https://subscription-admin.appstle.com/api/external/v2/subscription-groups/all-selling-plans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body[
{
"afterCycle1": 0,
"billingFrequencyCount": 1,
"billingFrequencyInterval": "MONTH",
"discountEnabled": true,
"discountOffer": 10,
"discountType": "PERCENTAGE",
"frequencyCount": 1,
"frequencyDescription": "Save 10% on monthly deliveries",
"frequencyInterval": "MONTH",
"frequencyName": "Delivered Monthly",
"frequencyType": "ON_PURCHASE_DAY",
"groupId": 123456789,
"groupName": "Monthly Coffee Subscription",
"id": "gid://shopify/SellingPlan/111111",
"inventoryPolicyReserve": "ON_SALE",
"maxCycles": null,
"memberOnly": false,
"minCycles": 3,
"planType": "PAY_AS_YOU_GO",
"upcomingOrderEmailBuffer": 3
},
{
"afterCycle1": 0,
"billingFrequencyCount": 1,
"billingFrequencyInterval": "WEEK",
"discountEnabled": true,
"discountOffer": 15,
"discountType": "PERCENTAGE",
"frequencyCount": 1,
"frequencyDescription": "Fresh tea every week with 15% savings",
"frequencyInterval": "WEEK",
"frequencyName": "Weekly Tea Box",
"groupId": 123456790,
"groupName": "Premium Tea Collection",
"id": "gid://shopify/SellingPlan/222222",
"planType": "PAY_AS_YOU_GO"
},
{
"afterCycle1": 0,
"billingFrequencyCount": 3,
"billingFrequencyInterval": "MONTH",
"discountEnabled": true,
"discountOffer": 25,
"discountType": "PERCENTAGE",
"frequencyCount": 1,
"frequencyDescription": "Pay upfront for 3 months and save 25%",
"frequencyInterval": "MONTH",
"frequencyName": "3-Month Prepaid Coffee",
"groupId": 123456789,
"groupName": "Monthly Coffee Subscription",
"id": "gid://shopify/SellingPlan/333333",
"maxCycles": 12,
"payAsYouGoPrepaidBillingFrequencyCount": 3,
"planType": "PAY_AS_YOU_GO_PREPAID",
"repeatingCycle": true,
"repeatingNumberOfCycle": 12
}
][
{
"afterCycle1": 123,
"afterCycle2": 123,
"appstleCycles": [
{
"afterCycle": 3,
"discountType": "PERCENTAGE",
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeProducts": [
{
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeVariantId": 42549172011164
}
],
"freeVariantId": 42549172011164,
"preventDuplicationFreeProduct": true,
"repeatingCycle": true,
"repeatingNumberOfCycle": 6,
"tierRole": "<string>",
"value": 10
}
],
"billingFrequencyCount": 123,
"billingFrequencyInterval": "DAY",
"cutOff": 123,
"defaultSelectedPlan": true,
"deliveryPolicyPreAnchorBehavior": "ASAP",
"discountEnabled": true,
"discountEnabled2": true,
"discountEnabled2Masked": true,
"discountEnabledMasked": true,
"discountOffer": 123,
"discountOffer2": 123,
"discountType": "PERCENTAGE",
"discountType2": "PERCENTAGE",
"fixedBillingDates": [
{
"day": 123,
"month": 123
}
],
"formFieldJson": "<string>",
"freeTrialCount": 123,
"freeTrialEnabled": true,
"freeTrialInterval": "DAY",
"frequencyCount": 123,
"frequencyDescription": "<string>",
"frequencyInterval": "DAY",
"frequencyName": "<string>",
"frequencyNameTranslations": {},
"frequencySequence": 123,
"frequencyType": "ON_PURCHASE_DAY",
"groupId": 123,
"groupName": "<string>",
"id": "<string>",
"idNew": "<string>",
"inventoryPolicyReserve": "ON_FULFILLMENT",
"keepOriginalNextBillingDateAfterTrial": true,
"maxCycles": 123,
"memberExclusiveTags": "<string>",
"memberInclusiveTags": "<string>",
"memberOnly": true,
"minCycles": 123,
"minQuantity": 123,
"nonMemberOnly": true,
"payAsYouGoPrepaidBillingFrequencyCount": 123,
"planType": "PAY_AS_YOU_GO",
"prepaidFlag": "<string>",
"repeatingCycle": true,
"repeatingNumberOfCycle": 123,
"specificDayEnabled": true,
"specificDayValue": 123,
"specificMonthValue": 123,
"upcomingOrderEmailBuffer": 123
}
][
{
"afterCycle1": 123,
"afterCycle2": 123,
"appstleCycles": [
{
"afterCycle": 3,
"discountType": "PERCENTAGE",
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeProducts": [
{
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeVariantId": 42549172011164
}
],
"freeVariantId": 42549172011164,
"preventDuplicationFreeProduct": true,
"repeatingCycle": true,
"repeatingNumberOfCycle": 6,
"tierRole": "<string>",
"value": 10
}
],
"billingFrequencyCount": 123,
"billingFrequencyInterval": "DAY",
"cutOff": 123,
"defaultSelectedPlan": true,
"deliveryPolicyPreAnchorBehavior": "ASAP",
"discountEnabled": true,
"discountEnabled2": true,
"discountEnabled2Masked": true,
"discountEnabledMasked": true,
"discountOffer": 123,
"discountOffer2": 123,
"discountType": "PERCENTAGE",
"discountType2": "PERCENTAGE",
"fixedBillingDates": [
{
"day": 123,
"month": 123
}
],
"formFieldJson": "<string>",
"freeTrialCount": 123,
"freeTrialEnabled": true,
"freeTrialInterval": "DAY",
"frequencyCount": 123,
"frequencyDescription": "<string>",
"frequencyInterval": "DAY",
"frequencyName": "<string>",
"frequencyNameTranslations": {},
"frequencySequence": 123,
"frequencyType": "ON_PURCHASE_DAY",
"groupId": 123,
"groupName": "<string>",
"id": "<string>",
"idNew": "<string>",
"inventoryPolicyReserve": "ON_FULFILLMENT",
"keepOriginalNextBillingDateAfterTrial": true,
"maxCycles": 123,
"memberExclusiveTags": "<string>",
"memberInclusiveTags": "<string>",
"memberOnly": true,
"minCycles": 123,
"minQuantity": 123,
"nonMemberOnly": true,
"payAsYouGoPrepaidBillingFrequencyCount": 123,
"planType": "PAY_AS_YOU_GO",
"prepaidFlag": "<string>",
"repeatingCycle": true,
"repeatingNumberOfCycle": 123,
"specificDayEnabled": true,
"specificDayValue": 123,
"specificMonthValue": 123,
"upcomingOrderEmailBuffer": 123
}
][
{
"afterCycle1": 123,
"afterCycle2": 123,
"appstleCycles": [
{
"afterCycle": 3,
"discountType": "PERCENTAGE",
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeProducts": [
{
"freeProductHandle": "free-gift-product",
"freeProductImage": "https://cdn.shopify.com/s/files/1/0000/0000/products/mug.jpg",
"freeProductTitle": "Ceramic Mug",
"freeVariantId": 42549172011164
}
],
"freeVariantId": 42549172011164,
"preventDuplicationFreeProduct": true,
"repeatingCycle": true,
"repeatingNumberOfCycle": 6,
"tierRole": "<string>",
"value": 10
}
],
"billingFrequencyCount": 123,
"billingFrequencyInterval": "DAY",
"cutOff": 123,
"defaultSelectedPlan": true,
"deliveryPolicyPreAnchorBehavior": "ASAP",
"discountEnabled": true,
"discountEnabled2": true,
"discountEnabled2Masked": true,
"discountEnabledMasked": true,
"discountOffer": 123,
"discountOffer2": 123,
"discountType": "PERCENTAGE",
"discountType2": "PERCENTAGE",
"fixedBillingDates": [
{
"day": 123,
"month": 123
}
],
"formFieldJson": "<string>",
"freeTrialCount": 123,
"freeTrialEnabled": true,
"freeTrialInterval": "DAY",
"frequencyCount": 123,
"frequencyDescription": "<string>",
"frequencyInterval": "DAY",
"frequencyName": "<string>",
"frequencyNameTranslations": {},
"frequencySequence": 123,
"frequencyType": "ON_PURCHASE_DAY",
"groupId": 123,
"groupName": "<string>",
"id": "<string>",
"idNew": "<string>",
"inventoryPolicyReserve": "ON_FULFILLMENT",
"keepOriginalNextBillingDateAfterTrial": true,
"maxCycles": 123,
"memberExclusiveTags": "<string>",
"memberInclusiveTags": "<string>",
"memberOnly": true,
"minCycles": 123,
"minQuantity": 123,
"nonMemberOnly": true,
"payAsYouGoPrepaidBillingFrequencyCount": 123,
"planType": "PAY_AS_YOU_GO",
"prepaidFlag": "<string>",
"repeatingCycle": true,
"repeatingNumberOfCycle": 123,
"specificDayEnabled": true,
"specificDayValue": 123,
"specificMonthValue": 123,
"upcomingOrderEmailBuffer": 123
}
]