Customer Portal Configuration
Get customer portal settings
Retrieves customer portal configuration settings for the authenticated shop. These settings control the appearance, behavior, and text labels displayed in the customer self-service portal.
Key Settings Returned:
- UI Text Labels: Button text, form field labels, messages, tooltips
- Feature Toggles: Enable/disable portal features (shipping address edit, pause/resume, etc.)
- Branding: Custom HTML for header/footer, date formats, localization
- Cancellation Controls: Minimum days before cancellation, retention discounts
- Address Management: Shipping address field labels and configurations
- Discount Display: Discount note titles and descriptions for different cycles
- Product Management: Add product labels, variant change text, quantity controls
- Order Management: Order history labels, fulfillment status text
- Pause/Resume: Pause badge text, resume subscription messages
- Rewards Integration: Rewards text and points display labels
Common Use Cases:
- Retrieve portal settings for display in custom integrations
- Sync portal configuration with external systems
- Build custom customer portal interfaces using API-driven configuration
- Validate current portal settings programmatically
- Implement multi-language support by fetching localized labels
Authentication: Requires API key authentication via X-API-Key header or api_key parameter
GET
/
api
/
external
/
v2
/
customer-portal-settings
/
{id}
Get customer portal settings
curl --request GET \
--url https://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}import requests
url = "https://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}';
const options = {method: 'GET'};
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://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}"
req, _ := http.NewRequest("GET", url, nil)
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://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"amountLbl": "<string>",
"cancelAccordionTitle": "<string>",
"cancelFreqBtnText": "<string>",
"cancelSubscriptionBtnText": "<string>",
"cardExpiryText": "<string>",
"cardHolderNameText": "<string>",
"cardLastFourDigitText": "<string>",
"cardTypeText": "<string>",
"editFrequencyBtnText": "<string>",
"nextOrderDateLbl": "<string>",
"nextOrderText": "<string>",
"noSubscriptionMessage": "<string>",
"orderFrequencyText": "<string>",
"orderNoLbl": "<string>",
"paymentDetailAccordionTitle": "<string>",
"paymentInfoText": "<string>",
"paymentMethodTypeText": "<string>",
"quantityLbl": "<string>",
"shop": "<string>",
"statusLbl": "<string>",
"statusText": "<string>",
"subscriptionNoText": "<string>",
"totalProductsText": "<string>",
"upcomingOrderAccordionTitle": "<string>",
"updateFreqBtnText": "<string>",
"updatePaymentBtnText": "<string>",
"updatePaymentMessage": "<string>",
"acceptBtnText": "<string>",
"activeBadgeText": "<string>",
"addAdditionalProduct": true,
"addNewButtonText": "<string>",
"addOneTimeProduct": true,
"addProductButtonText": "<string>",
"addProductFinishedMessageText": "<string>",
"addProductLabelText": "<string>",
"addProductOnlyForSameProductVariant": true,
"addToSubscriptionTitleCP": "<string>",
"additionalFeedbackLabel": "<string>",
"address1LabelText": "<string>",
"address2LabelText": "<string>",
"addressHeaderTitleText": "<string>",
"afterCycleDiscountNoteDescription": "<string>",
"allowCancellationBeforeDays": "<string>",
"applySubscriptionDiscount": true,
"attributeHeadingText": "<string>",
"attributeNameLabelText": "<string>",
"attributeValue": "<string>",
"backToAccountLabel": "<string>",
"bottomHtml": "<string>",
"cancelButtonText": "<string>",
"cancelChangeOrderBtnText": "<string>",
"cancelEditShippingButtonText": "<string>",
"cancelPendingDowngradeBtnText": "<string>",
"cancelPendingDowngradeText": "<string>",
"cancelPendingUpgradeBtnText": "<string>",
"cancelPendingUpgradeText": "<string>",
"cancelSub": true,
"cancelSubscriptionConfirmPayAsYouGoText": "<string>",
"cancelSubscriptionConfirmPrepaidText": "<string>",
"cancelSubscriptionMinimumBillingIterationsMessage": "<string>",
"cancelSubscriptionPayAsYouGoButtonText": "<string>",
"cancelSubscriptionPrepaidButtonText": "<string>",
"cancellationFeedbackLabelText": "<string>",
"cancellationReasonLabelText": "<string>",
"cancellationSecurityModalMessage": "<string>",
"cancellationSecurityModalTitle": "<string>",
"cancelledOnLabelText": "<string>",
"changeNextOrderDate": true,
"changeOrderFrequency": true,
"changeShippingAddressFlag": true,
"changeVariantLabelText": "<string>",
"chooseAnotherPaymentMethodText": "<string>",
"choosePurchaseOptionLabelText": "<string>",
"cityLabelText": "<string>",
"clickHereText": "<string>",
"closeBadgeText": "<string>",
"closeBtnText": "<string>",
"closeButtonLabel": "<string>",
"companyLabelText": "<string>",
"conformationPopupForCancellationDiscountText": "<string>",
"continueButtonLabel": "<string>",
"contractErrorMessageText": "<string>",
"contractUpdateMessageText": "<string>",
"countryCodeLabelText": "<string>",
"countryLabelText": "<string>",
"createAdditionalOrder": true,
"creditCardText": "<string>",
"currentMembershipPlanText": "<string>",
"currentMembershipText": "<string>",
"customerIdText": "<string>",
"customerPortalSettingJson": "<string>",
"dateFormat": "<string>",
"dayText": "<string>",
"daysLabelText": "<string>",
"deleteButtonText": "<string>",
"deleteConfirmationMsgText": "<string>",
"deleteMsgText": "<string>",
"deleteProductFlag": true,
"deliverLabelText": "<string>",
"deliveryFrequencyLabelText": "<string>",
"deliveryPriceText": "<string>",
"descriptionLength": "<string>",
"discountCode": true,
"discountCodeApplyButtonText": "<string>",
"discountCodeText": "<string>",
"discountCouponAppliedText": "<string>",
"discountMessageOnCancellation": "<string>",
"discountNoteTitle": "<string>",
"discountRecurringCycleLimitOnCancellation": 123,
"downgradeBadgeText": "<string>",
"downgradeMembershipLabel": "<string>",
"editChangeOrderBtnText": "<string>",
"editProductButtonText": "<string>",
"editProductFlag": true,
"editQuantityLabelText": "<string>",
"editShippingModalLabel": "<string>",
"enableMembershipHistory": true,
"enableRedirectMyAccountButton": true,
"enableResendMagicLink": true,
"enableShowProductDescription": true,
"enableViewAttributes": true,
"endingWithText": "<string>",
"errorText": "<string>",
"everyLabelText": "<string>",
"expiredTokenText": "<string>",
"failureStatusText": "<string>",
"finishLabelText": "<string>",
"firstNameLabelText": "<string>",
"freezeOrderTillMinCycle": true,
"freezeUpdateSubscriptionMessage": "<string>",
"fulfilledText": "<string>",
"goBackButtonText": "<string>",
"goBackRedirectLink": "<string>",
"helloNameText": "<string>",
"hideDetailsText": "<string>",
"historyLabelText": "<string>",
"id": 123,
"includeOutOfStockProduct": true,
"initialDiscountNoteDescription": "<string>",
"lastAttemptDateLabelText": "<string>",
"lastBillingAttemptFailedText": "<string>",
"lastNameLabelText": "<string>",
"loadMoreProductsText": "<string>",
"loadingProductsText": "<string>",
"localeDate": "<string>",
"manageBtnText": "<string>",
"manageSubscriptionButtonText": "<string>",
"membershipExpireDescription": "<string>",
"membershipExpireText": "<string>",
"membershipPerksDetailsText": "<string>",
"missedBillingAlertText": "<string>",
"monthText": "<string>",
"monthsLabelText": "<string>",
"newPlanText": "<string>",
"nextBtnText": "<string>",
"nextDeliveryDate": "<string>",
"noBtnText": "<string>",
"noPaymentMethodFoundText": "<string>",
"noProductsAvailableText": "<string>",
"oneTimePurchaseDisplayMessageText": "<string>",
"oneTimePurchaseMessageText": "<string>",
"oneTimePurchaseNoteText": "<string>",
"oneTimePurchaseTitleCP": "<string>",
"openBadgeText": "<string>",
"orderDateLabelText": "<string>",
"orderNoLabelText": "<string>",
"orderNoteFlag": true,
"orderNoteText": "<string>",
"pauseBadgeText": "<string>",
"pauseMembershipLabel": "<string>",
"pauseMembershipMessageText": "<string>",
"pauseResumeSub": true,
"pauseSubscriptionText": "<string>",
"paymentNotificationText": "<string>",
"pendingDowngradeTitleText": "<string>",
"phoneLabelText": "<string>",
"pleaseWaitLoaderText": "<string>",
"portalLoginLinkText": "<string>",
"preventCancellationBeforeDays": "<string>",
"preventCancellationBeforeDaysMessage": "<string>",
"previousBtnText": "<string>",
"productAddMessageText": "<string>",
"productConfirmationButtonLabel": "<string>",
"productInSubscriptionText": "<string>",
"productLabelText": "<string>",
"productRemovedTooltip": "<string>",
"productReplaceWarningText": "<string>",
"provinceCodeLabelText": "<string>",
"provinceLabelText": "<string>",
"purchaseOptionLabelText": "<string>",
"queueBadgeText": "<string>",
"redeemRewardsText": "<string>",
"removeButtonText": "<string>",
"removedTagOnFreeTrial": "<string>",
"resumeMembershipLabel": "<string>",
"resumeSub": true,
"resumeSubscriptionDescriptionText": "<string>",
"resumeSubscriptionText": "<string>",
"retrieveMagicLinkDescription": "<string>",
"retrieveMagicLinkText": "<string>",
"rewardsText": "<string>",
"samePriceText": "<string>",
"saveButtonLabel": "<string>",
"scheduleDowngradeText": "<string>",
"scheduleUpgradeText": "<string>",
"seeMoreDetailsText": "<string>",
"seeMoreProductBtnText": "<string>",
"selectCancellationReasonLabelText": "<string>",
"selectDeliveryMethodLabel": "<string>",
"selectNewPlanText": "<string>",
"selectProductLabelText": "<string>",
"sendEmailTextV2": "<string>",
"shippingAddressLabel": "<string>",
"shippingLabelText": "<string>",
"shippingMethodLabel": "<string>",
"shippingOptionText": "<string>",
"showShipment": true,
"showUpcomingOrdersLabel": "<string>",
"skipBadgeText": "<string>",
"skipFirstPage": true,
"skipOrderButtonText": "<string>",
"subTotalLabelText": "<string>",
"subscriptionActivatedMessageText": "<string>",
"subscriptionDiscount": 123,
"subscriptionPausedMessageText": "<string>",
"subtotalLabel": "<string>",
"successStatusText": "<string>",
"successText": "<string>",
"topHtml": "<string>",
"totalPricePerDeliveryText": "<string>",
"translationUpdateRequest": {
"id": 123,
"value": "<string>"
},
"unableToUpdateSubscriptionStatusMessageText": "<string>",
"upSellMessage": "<string>",
"upcomingFulfillmentText": "<string>",
"upcomingOrderChangePopupFailureClosebtnText": "<string>",
"upcomingOrderChangePopupFailureDescriptionText": "<string>",
"upcomingOrderChangePopupFailureTitleText": "<string>",
"upcomingOrderChangePopupSuccessClosebtnText": "<string>",
"upcomingOrderChangePopupSuccessDescriptionText": "<string>",
"upcomingOrderChangePopupSuccessTitleText": "<string>",
"updateButtonText": "<string>",
"updateChangeOrderBtnText": "<string>",
"updateEditShippingButtonText": "<string>",
"updateShipmentBillingDate": true,
"upgradeBadgeText": "<string>",
"useUrlWithCustomerId": true,
"viewAttributeLabelText": "<string>",
"weekText": "<string>",
"weeksLabelText": "<string>",
"welcomeText": "<string>",
"yearText": "<string>",
"yearsLabelText": "<string>",
"yesBtnText": "<string>",
"yourAvailableRewardsPointsText": "<string>",
"yourRewardsText": "<string>",
"zipLabelText": "<string>"
}{
"amountLbl": "<string>",
"cancelAccordionTitle": "<string>",
"cancelFreqBtnText": "<string>",
"cancelSubscriptionBtnText": "<string>",
"cardExpiryText": "<string>",
"cardHolderNameText": "<string>",
"cardLastFourDigitText": "<string>",
"cardTypeText": "<string>",
"editFrequencyBtnText": "<string>",
"nextOrderDateLbl": "<string>",
"nextOrderText": "<string>",
"noSubscriptionMessage": "<string>",
"orderFrequencyText": "<string>",
"orderNoLbl": "<string>",
"paymentDetailAccordionTitle": "<string>",
"paymentInfoText": "<string>",
"paymentMethodTypeText": "<string>",
"quantityLbl": "<string>",
"shop": "<string>",
"statusLbl": "<string>",
"statusText": "<string>",
"subscriptionNoText": "<string>",
"totalProductsText": "<string>",
"upcomingOrderAccordionTitle": "<string>",
"updateFreqBtnText": "<string>",
"updatePaymentBtnText": "<string>",
"updatePaymentMessage": "<string>",
"acceptBtnText": "<string>",
"activeBadgeText": "<string>",
"addAdditionalProduct": true,
"addNewButtonText": "<string>",
"addOneTimeProduct": true,
"addProductButtonText": "<string>",
"addProductFinishedMessageText": "<string>",
"addProductLabelText": "<string>",
"addProductOnlyForSameProductVariant": true,
"addToSubscriptionTitleCP": "<string>",
"additionalFeedbackLabel": "<string>",
"address1LabelText": "<string>",
"address2LabelText": "<string>",
"addressHeaderTitleText": "<string>",
"afterCycleDiscountNoteDescription": "<string>",
"allowCancellationBeforeDays": "<string>",
"applySubscriptionDiscount": true,
"attributeHeadingText": "<string>",
"attributeNameLabelText": "<string>",
"attributeValue": "<string>",
"backToAccountLabel": "<string>",
"bottomHtml": "<string>",
"cancelButtonText": "<string>",
"cancelChangeOrderBtnText": "<string>",
"cancelEditShippingButtonText": "<string>",
"cancelPendingDowngradeBtnText": "<string>",
"cancelPendingDowngradeText": "<string>",
"cancelPendingUpgradeBtnText": "<string>",
"cancelPendingUpgradeText": "<string>",
"cancelSub": true,
"cancelSubscriptionConfirmPayAsYouGoText": "<string>",
"cancelSubscriptionConfirmPrepaidText": "<string>",
"cancelSubscriptionMinimumBillingIterationsMessage": "<string>",
"cancelSubscriptionPayAsYouGoButtonText": "<string>",
"cancelSubscriptionPrepaidButtonText": "<string>",
"cancellationFeedbackLabelText": "<string>",
"cancellationReasonLabelText": "<string>",
"cancellationSecurityModalMessage": "<string>",
"cancellationSecurityModalTitle": "<string>",
"cancelledOnLabelText": "<string>",
"changeNextOrderDate": true,
"changeOrderFrequency": true,
"changeShippingAddressFlag": true,
"changeVariantLabelText": "<string>",
"chooseAnotherPaymentMethodText": "<string>",
"choosePurchaseOptionLabelText": "<string>",
"cityLabelText": "<string>",
"clickHereText": "<string>",
"closeBadgeText": "<string>",
"closeBtnText": "<string>",
"closeButtonLabel": "<string>",
"companyLabelText": "<string>",
"conformationPopupForCancellationDiscountText": "<string>",
"continueButtonLabel": "<string>",
"contractErrorMessageText": "<string>",
"contractUpdateMessageText": "<string>",
"countryCodeLabelText": "<string>",
"countryLabelText": "<string>",
"createAdditionalOrder": true,
"creditCardText": "<string>",
"currentMembershipPlanText": "<string>",
"currentMembershipText": "<string>",
"customerIdText": "<string>",
"customerPortalSettingJson": "<string>",
"dateFormat": "<string>",
"dayText": "<string>",
"daysLabelText": "<string>",
"deleteButtonText": "<string>",
"deleteConfirmationMsgText": "<string>",
"deleteMsgText": "<string>",
"deleteProductFlag": true,
"deliverLabelText": "<string>",
"deliveryFrequencyLabelText": "<string>",
"deliveryPriceText": "<string>",
"descriptionLength": "<string>",
"discountCode": true,
"discountCodeApplyButtonText": "<string>",
"discountCodeText": "<string>",
"discountCouponAppliedText": "<string>",
"discountMessageOnCancellation": "<string>",
"discountNoteTitle": "<string>",
"discountRecurringCycleLimitOnCancellation": 123,
"downgradeBadgeText": "<string>",
"downgradeMembershipLabel": "<string>",
"editChangeOrderBtnText": "<string>",
"editProductButtonText": "<string>",
"editProductFlag": true,
"editQuantityLabelText": "<string>",
"editShippingModalLabel": "<string>",
"enableMembershipHistory": true,
"enableRedirectMyAccountButton": true,
"enableResendMagicLink": true,
"enableShowProductDescription": true,
"enableViewAttributes": true,
"endingWithText": "<string>",
"errorText": "<string>",
"everyLabelText": "<string>",
"expiredTokenText": "<string>",
"failureStatusText": "<string>",
"finishLabelText": "<string>",
"firstNameLabelText": "<string>",
"freezeOrderTillMinCycle": true,
"freezeUpdateSubscriptionMessage": "<string>",
"fulfilledText": "<string>",
"goBackButtonText": "<string>",
"goBackRedirectLink": "<string>",
"helloNameText": "<string>",
"hideDetailsText": "<string>",
"historyLabelText": "<string>",
"id": 123,
"includeOutOfStockProduct": true,
"initialDiscountNoteDescription": "<string>",
"lastAttemptDateLabelText": "<string>",
"lastBillingAttemptFailedText": "<string>",
"lastNameLabelText": "<string>",
"loadMoreProductsText": "<string>",
"loadingProductsText": "<string>",
"localeDate": "<string>",
"manageBtnText": "<string>",
"manageSubscriptionButtonText": "<string>",
"membershipExpireDescription": "<string>",
"membershipExpireText": "<string>",
"membershipPerksDetailsText": "<string>",
"missedBillingAlertText": "<string>",
"monthText": "<string>",
"monthsLabelText": "<string>",
"newPlanText": "<string>",
"nextBtnText": "<string>",
"nextDeliveryDate": "<string>",
"noBtnText": "<string>",
"noPaymentMethodFoundText": "<string>",
"noProductsAvailableText": "<string>",
"oneTimePurchaseDisplayMessageText": "<string>",
"oneTimePurchaseMessageText": "<string>",
"oneTimePurchaseNoteText": "<string>",
"oneTimePurchaseTitleCP": "<string>",
"openBadgeText": "<string>",
"orderDateLabelText": "<string>",
"orderNoLabelText": "<string>",
"orderNoteFlag": true,
"orderNoteText": "<string>",
"pauseBadgeText": "<string>",
"pauseMembershipLabel": "<string>",
"pauseMembershipMessageText": "<string>",
"pauseResumeSub": true,
"pauseSubscriptionText": "<string>",
"paymentNotificationText": "<string>",
"pendingDowngradeTitleText": "<string>",
"phoneLabelText": "<string>",
"pleaseWaitLoaderText": "<string>",
"portalLoginLinkText": "<string>",
"preventCancellationBeforeDays": "<string>",
"preventCancellationBeforeDaysMessage": "<string>",
"previousBtnText": "<string>",
"productAddMessageText": "<string>",
"productConfirmationButtonLabel": "<string>",
"productInSubscriptionText": "<string>",
"productLabelText": "<string>",
"productRemovedTooltip": "<string>",
"productReplaceWarningText": "<string>",
"provinceCodeLabelText": "<string>",
"provinceLabelText": "<string>",
"purchaseOptionLabelText": "<string>",
"queueBadgeText": "<string>",
"redeemRewardsText": "<string>",
"removeButtonText": "<string>",
"removedTagOnFreeTrial": "<string>",
"resumeMembershipLabel": "<string>",
"resumeSub": true,
"resumeSubscriptionDescriptionText": "<string>",
"resumeSubscriptionText": "<string>",
"retrieveMagicLinkDescription": "<string>",
"retrieveMagicLinkText": "<string>",
"rewardsText": "<string>",
"samePriceText": "<string>",
"saveButtonLabel": "<string>",
"scheduleDowngradeText": "<string>",
"scheduleUpgradeText": "<string>",
"seeMoreDetailsText": "<string>",
"seeMoreProductBtnText": "<string>",
"selectCancellationReasonLabelText": "<string>",
"selectDeliveryMethodLabel": "<string>",
"selectNewPlanText": "<string>",
"selectProductLabelText": "<string>",
"sendEmailTextV2": "<string>",
"shippingAddressLabel": "<string>",
"shippingLabelText": "<string>",
"shippingMethodLabel": "<string>",
"shippingOptionText": "<string>",
"showShipment": true,
"showUpcomingOrdersLabel": "<string>",
"skipBadgeText": "<string>",
"skipFirstPage": true,
"skipOrderButtonText": "<string>",
"subTotalLabelText": "<string>",
"subscriptionActivatedMessageText": "<string>",
"subscriptionDiscount": 123,
"subscriptionPausedMessageText": "<string>",
"subtotalLabel": "<string>",
"successStatusText": "<string>",
"successText": "<string>",
"topHtml": "<string>",
"totalPricePerDeliveryText": "<string>",
"translationUpdateRequest": {
"id": 123,
"value": "<string>"
},
"unableToUpdateSubscriptionStatusMessageText": "<string>",
"upSellMessage": "<string>",
"upcomingFulfillmentText": "<string>",
"upcomingOrderChangePopupFailureClosebtnText": "<string>",
"upcomingOrderChangePopupFailureDescriptionText": "<string>",
"upcomingOrderChangePopupFailureTitleText": "<string>",
"upcomingOrderChangePopupSuccessClosebtnText": "<string>",
"upcomingOrderChangePopupSuccessDescriptionText": "<string>",
"upcomingOrderChangePopupSuccessTitleText": "<string>",
"updateButtonText": "<string>",
"updateChangeOrderBtnText": "<string>",
"updateEditShippingButtonText": "<string>",
"updateShipmentBillingDate": true,
"upgradeBadgeText": "<string>",
"useUrlWithCustomerId": true,
"viewAttributeLabelText": "<string>",
"weekText": "<string>",
"weeksLabelText": "<string>",
"welcomeText": "<string>",
"yearText": "<string>",
"yearsLabelText": "<string>",
"yesBtnText": "<string>",
"yourAvailableRewardsPointsText": "<string>",
"yourRewardsText": "<string>",
"zipLabelText": "<string>"
}{
"amountLbl": "<string>",
"cancelAccordionTitle": "<string>",
"cancelFreqBtnText": "<string>",
"cancelSubscriptionBtnText": "<string>",
"cardExpiryText": "<string>",
"cardHolderNameText": "<string>",
"cardLastFourDigitText": "<string>",
"cardTypeText": "<string>",
"editFrequencyBtnText": "<string>",
"nextOrderDateLbl": "<string>",
"nextOrderText": "<string>",
"noSubscriptionMessage": "<string>",
"orderFrequencyText": "<string>",
"orderNoLbl": "<string>",
"paymentDetailAccordionTitle": "<string>",
"paymentInfoText": "<string>",
"paymentMethodTypeText": "<string>",
"quantityLbl": "<string>",
"shop": "<string>",
"statusLbl": "<string>",
"statusText": "<string>",
"subscriptionNoText": "<string>",
"totalProductsText": "<string>",
"upcomingOrderAccordionTitle": "<string>",
"updateFreqBtnText": "<string>",
"updatePaymentBtnText": "<string>",
"updatePaymentMessage": "<string>",
"acceptBtnText": "<string>",
"activeBadgeText": "<string>",
"addAdditionalProduct": true,
"addNewButtonText": "<string>",
"addOneTimeProduct": true,
"addProductButtonText": "<string>",
"addProductFinishedMessageText": "<string>",
"addProductLabelText": "<string>",
"addProductOnlyForSameProductVariant": true,
"addToSubscriptionTitleCP": "<string>",
"additionalFeedbackLabel": "<string>",
"address1LabelText": "<string>",
"address2LabelText": "<string>",
"addressHeaderTitleText": "<string>",
"afterCycleDiscountNoteDescription": "<string>",
"allowCancellationBeforeDays": "<string>",
"applySubscriptionDiscount": true,
"attributeHeadingText": "<string>",
"attributeNameLabelText": "<string>",
"attributeValue": "<string>",
"backToAccountLabel": "<string>",
"bottomHtml": "<string>",
"cancelButtonText": "<string>",
"cancelChangeOrderBtnText": "<string>",
"cancelEditShippingButtonText": "<string>",
"cancelPendingDowngradeBtnText": "<string>",
"cancelPendingDowngradeText": "<string>",
"cancelPendingUpgradeBtnText": "<string>",
"cancelPendingUpgradeText": "<string>",
"cancelSub": true,
"cancelSubscriptionConfirmPayAsYouGoText": "<string>",
"cancelSubscriptionConfirmPrepaidText": "<string>",
"cancelSubscriptionMinimumBillingIterationsMessage": "<string>",
"cancelSubscriptionPayAsYouGoButtonText": "<string>",
"cancelSubscriptionPrepaidButtonText": "<string>",
"cancellationFeedbackLabelText": "<string>",
"cancellationReasonLabelText": "<string>",
"cancellationSecurityModalMessage": "<string>",
"cancellationSecurityModalTitle": "<string>",
"cancelledOnLabelText": "<string>",
"changeNextOrderDate": true,
"changeOrderFrequency": true,
"changeShippingAddressFlag": true,
"changeVariantLabelText": "<string>",
"chooseAnotherPaymentMethodText": "<string>",
"choosePurchaseOptionLabelText": "<string>",
"cityLabelText": "<string>",
"clickHereText": "<string>",
"closeBadgeText": "<string>",
"closeBtnText": "<string>",
"closeButtonLabel": "<string>",
"companyLabelText": "<string>",
"conformationPopupForCancellationDiscountText": "<string>",
"continueButtonLabel": "<string>",
"contractErrorMessageText": "<string>",
"contractUpdateMessageText": "<string>",
"countryCodeLabelText": "<string>",
"countryLabelText": "<string>",
"createAdditionalOrder": true,
"creditCardText": "<string>",
"currentMembershipPlanText": "<string>",
"currentMembershipText": "<string>",
"customerIdText": "<string>",
"customerPortalSettingJson": "<string>",
"dateFormat": "<string>",
"dayText": "<string>",
"daysLabelText": "<string>",
"deleteButtonText": "<string>",
"deleteConfirmationMsgText": "<string>",
"deleteMsgText": "<string>",
"deleteProductFlag": true,
"deliverLabelText": "<string>",
"deliveryFrequencyLabelText": "<string>",
"deliveryPriceText": "<string>",
"descriptionLength": "<string>",
"discountCode": true,
"discountCodeApplyButtonText": "<string>",
"discountCodeText": "<string>",
"discountCouponAppliedText": "<string>",
"discountMessageOnCancellation": "<string>",
"discountNoteTitle": "<string>",
"discountRecurringCycleLimitOnCancellation": 123,
"downgradeBadgeText": "<string>",
"downgradeMembershipLabel": "<string>",
"editChangeOrderBtnText": "<string>",
"editProductButtonText": "<string>",
"editProductFlag": true,
"editQuantityLabelText": "<string>",
"editShippingModalLabel": "<string>",
"enableMembershipHistory": true,
"enableRedirectMyAccountButton": true,
"enableResendMagicLink": true,
"enableShowProductDescription": true,
"enableViewAttributes": true,
"endingWithText": "<string>",
"errorText": "<string>",
"everyLabelText": "<string>",
"expiredTokenText": "<string>",
"failureStatusText": "<string>",
"finishLabelText": "<string>",
"firstNameLabelText": "<string>",
"freezeOrderTillMinCycle": true,
"freezeUpdateSubscriptionMessage": "<string>",
"fulfilledText": "<string>",
"goBackButtonText": "<string>",
"goBackRedirectLink": "<string>",
"helloNameText": "<string>",
"hideDetailsText": "<string>",
"historyLabelText": "<string>",
"id": 123,
"includeOutOfStockProduct": true,
"initialDiscountNoteDescription": "<string>",
"lastAttemptDateLabelText": "<string>",
"lastBillingAttemptFailedText": "<string>",
"lastNameLabelText": "<string>",
"loadMoreProductsText": "<string>",
"loadingProductsText": "<string>",
"localeDate": "<string>",
"manageBtnText": "<string>",
"manageSubscriptionButtonText": "<string>",
"membershipExpireDescription": "<string>",
"membershipExpireText": "<string>",
"membershipPerksDetailsText": "<string>",
"missedBillingAlertText": "<string>",
"monthText": "<string>",
"monthsLabelText": "<string>",
"newPlanText": "<string>",
"nextBtnText": "<string>",
"nextDeliveryDate": "<string>",
"noBtnText": "<string>",
"noPaymentMethodFoundText": "<string>",
"noProductsAvailableText": "<string>",
"oneTimePurchaseDisplayMessageText": "<string>",
"oneTimePurchaseMessageText": "<string>",
"oneTimePurchaseNoteText": "<string>",
"oneTimePurchaseTitleCP": "<string>",
"openBadgeText": "<string>",
"orderDateLabelText": "<string>",
"orderNoLabelText": "<string>",
"orderNoteFlag": true,
"orderNoteText": "<string>",
"pauseBadgeText": "<string>",
"pauseMembershipLabel": "<string>",
"pauseMembershipMessageText": "<string>",
"pauseResumeSub": true,
"pauseSubscriptionText": "<string>",
"paymentNotificationText": "<string>",
"pendingDowngradeTitleText": "<string>",
"phoneLabelText": "<string>",
"pleaseWaitLoaderText": "<string>",
"portalLoginLinkText": "<string>",
"preventCancellationBeforeDays": "<string>",
"preventCancellationBeforeDaysMessage": "<string>",
"previousBtnText": "<string>",
"productAddMessageText": "<string>",
"productConfirmationButtonLabel": "<string>",
"productInSubscriptionText": "<string>",
"productLabelText": "<string>",
"productRemovedTooltip": "<string>",
"productReplaceWarningText": "<string>",
"provinceCodeLabelText": "<string>",
"provinceLabelText": "<string>",
"purchaseOptionLabelText": "<string>",
"queueBadgeText": "<string>",
"redeemRewardsText": "<string>",
"removeButtonText": "<string>",
"removedTagOnFreeTrial": "<string>",
"resumeMembershipLabel": "<string>",
"resumeSub": true,
"resumeSubscriptionDescriptionText": "<string>",
"resumeSubscriptionText": "<string>",
"retrieveMagicLinkDescription": "<string>",
"retrieveMagicLinkText": "<string>",
"rewardsText": "<string>",
"samePriceText": "<string>",
"saveButtonLabel": "<string>",
"scheduleDowngradeText": "<string>",
"scheduleUpgradeText": "<string>",
"seeMoreDetailsText": "<string>",
"seeMoreProductBtnText": "<string>",
"selectCancellationReasonLabelText": "<string>",
"selectDeliveryMethodLabel": "<string>",
"selectNewPlanText": "<string>",
"selectProductLabelText": "<string>",
"sendEmailTextV2": "<string>",
"shippingAddressLabel": "<string>",
"shippingLabelText": "<string>",
"shippingMethodLabel": "<string>",
"shippingOptionText": "<string>",
"showShipment": true,
"showUpcomingOrdersLabel": "<string>",
"skipBadgeText": "<string>",
"skipFirstPage": true,
"skipOrderButtonText": "<string>",
"subTotalLabelText": "<string>",
"subscriptionActivatedMessageText": "<string>",
"subscriptionDiscount": 123,
"subscriptionPausedMessageText": "<string>",
"subtotalLabel": "<string>",
"successStatusText": "<string>",
"successText": "<string>",
"topHtml": "<string>",
"totalPricePerDeliveryText": "<string>",
"translationUpdateRequest": {
"id": 123,
"value": "<string>"
},
"unableToUpdateSubscriptionStatusMessageText": "<string>",
"upSellMessage": "<string>",
"upcomingFulfillmentText": "<string>",
"upcomingOrderChangePopupFailureClosebtnText": "<string>",
"upcomingOrderChangePopupFailureDescriptionText": "<string>",
"upcomingOrderChangePopupFailureTitleText": "<string>",
"upcomingOrderChangePopupSuccessClosebtnText": "<string>",
"upcomingOrderChangePopupSuccessDescriptionText": "<string>",
"upcomingOrderChangePopupSuccessTitleText": "<string>",
"updateButtonText": "<string>",
"updateChangeOrderBtnText": "<string>",
"updateEditShippingButtonText": "<string>",
"updateShipmentBillingDate": true,
"upgradeBadgeText": "<string>",
"useUrlWithCustomerId": true,
"viewAttributeLabelText": "<string>",
"weekText": "<string>",
"weeksLabelText": "<string>",
"welcomeText": "<string>",
"yearText": "<string>",
"yearsLabelText": "<string>",
"yesBtnText": "<string>",
"yourAvailableRewardsPointsText": "<string>",
"yourRewardsText": "<string>",
"zipLabelText": "<string>"
}Headers
API Key for authentication (Preferred method - use this instead of api_key parameter)
Path Parameters
Shop identifier (typically shop domain)
Query Parameters
API Key (Deprecated - Use Header X-API-Key instead)
Response
Customer portal settings successfully retrieved
Available options:
UPGRADE_ONLY, DOWNGRADE_ONLY, UPGRADE_AND_DOWNGRADE, NONE Available options:
ALL_PRODUCTS, PRODUCTS_FROM_ALL_PLANS, PRODUCTS_FROM_CURRENT_PLAN Available options:
PERCENTAGE, AMOUNT Show child attributes
Show child attributes
⌘I
Get customer portal settings
curl --request GET \
--url https://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}import requests
url = "https://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}';
const options = {method: 'GET'};
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://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}"
req, _ := http.NewRequest("GET", url, nil)
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://membership-admin.appstle.com/api/external/v2/customer-portal-settings/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"amountLbl": "<string>",
"cancelAccordionTitle": "<string>",
"cancelFreqBtnText": "<string>",
"cancelSubscriptionBtnText": "<string>",
"cardExpiryText": "<string>",
"cardHolderNameText": "<string>",
"cardLastFourDigitText": "<string>",
"cardTypeText": "<string>",
"editFrequencyBtnText": "<string>",
"nextOrderDateLbl": "<string>",
"nextOrderText": "<string>",
"noSubscriptionMessage": "<string>",
"orderFrequencyText": "<string>",
"orderNoLbl": "<string>",
"paymentDetailAccordionTitle": "<string>",
"paymentInfoText": "<string>",
"paymentMethodTypeText": "<string>",
"quantityLbl": "<string>",
"shop": "<string>",
"statusLbl": "<string>",
"statusText": "<string>",
"subscriptionNoText": "<string>",
"totalProductsText": "<string>",
"upcomingOrderAccordionTitle": "<string>",
"updateFreqBtnText": "<string>",
"updatePaymentBtnText": "<string>",
"updatePaymentMessage": "<string>",
"acceptBtnText": "<string>",
"activeBadgeText": "<string>",
"addAdditionalProduct": true,
"addNewButtonText": "<string>",
"addOneTimeProduct": true,
"addProductButtonText": "<string>",
"addProductFinishedMessageText": "<string>",
"addProductLabelText": "<string>",
"addProductOnlyForSameProductVariant": true,
"addToSubscriptionTitleCP": "<string>",
"additionalFeedbackLabel": "<string>",
"address1LabelText": "<string>",
"address2LabelText": "<string>",
"addressHeaderTitleText": "<string>",
"afterCycleDiscountNoteDescription": "<string>",
"allowCancellationBeforeDays": "<string>",
"applySubscriptionDiscount": true,
"attributeHeadingText": "<string>",
"attributeNameLabelText": "<string>",
"attributeValue": "<string>",
"backToAccountLabel": "<string>",
"bottomHtml": "<string>",
"cancelButtonText": "<string>",
"cancelChangeOrderBtnText": "<string>",
"cancelEditShippingButtonText": "<string>",
"cancelPendingDowngradeBtnText": "<string>",
"cancelPendingDowngradeText": "<string>",
"cancelPendingUpgradeBtnText": "<string>",
"cancelPendingUpgradeText": "<string>",
"cancelSub": true,
"cancelSubscriptionConfirmPayAsYouGoText": "<string>",
"cancelSubscriptionConfirmPrepaidText": "<string>",
"cancelSubscriptionMinimumBillingIterationsMessage": "<string>",
"cancelSubscriptionPayAsYouGoButtonText": "<string>",
"cancelSubscriptionPrepaidButtonText": "<string>",
"cancellationFeedbackLabelText": "<string>",
"cancellationReasonLabelText": "<string>",
"cancellationSecurityModalMessage": "<string>",
"cancellationSecurityModalTitle": "<string>",
"cancelledOnLabelText": "<string>",
"changeNextOrderDate": true,
"changeOrderFrequency": true,
"changeShippingAddressFlag": true,
"changeVariantLabelText": "<string>",
"chooseAnotherPaymentMethodText": "<string>",
"choosePurchaseOptionLabelText": "<string>",
"cityLabelText": "<string>",
"clickHereText": "<string>",
"closeBadgeText": "<string>",
"closeBtnText": "<string>",
"closeButtonLabel": "<string>",
"companyLabelText": "<string>",
"conformationPopupForCancellationDiscountText": "<string>",
"continueButtonLabel": "<string>",
"contractErrorMessageText": "<string>",
"contractUpdateMessageText": "<string>",
"countryCodeLabelText": "<string>",
"countryLabelText": "<string>",
"createAdditionalOrder": true,
"creditCardText": "<string>",
"currentMembershipPlanText": "<string>",
"currentMembershipText": "<string>",
"customerIdText": "<string>",
"customerPortalSettingJson": "<string>",
"dateFormat": "<string>",
"dayText": "<string>",
"daysLabelText": "<string>",
"deleteButtonText": "<string>",
"deleteConfirmationMsgText": "<string>",
"deleteMsgText": "<string>",
"deleteProductFlag": true,
"deliverLabelText": "<string>",
"deliveryFrequencyLabelText": "<string>",
"deliveryPriceText": "<string>",
"descriptionLength": "<string>",
"discountCode": true,
"discountCodeApplyButtonText": "<string>",
"discountCodeText": "<string>",
"discountCouponAppliedText": "<string>",
"discountMessageOnCancellation": "<string>",
"discountNoteTitle": "<string>",
"discountRecurringCycleLimitOnCancellation": 123,
"downgradeBadgeText": "<string>",
"downgradeMembershipLabel": "<string>",
"editChangeOrderBtnText": "<string>",
"editProductButtonText": "<string>",
"editProductFlag": true,
"editQuantityLabelText": "<string>",
"editShippingModalLabel": "<string>",
"enableMembershipHistory": true,
"enableRedirectMyAccountButton": true,
"enableResendMagicLink": true,
"enableShowProductDescription": true,
"enableViewAttributes": true,
"endingWithText": "<string>",
"errorText": "<string>",
"everyLabelText": "<string>",
"expiredTokenText": "<string>",
"failureStatusText": "<string>",
"finishLabelText": "<string>",
"firstNameLabelText": "<string>",
"freezeOrderTillMinCycle": true,
"freezeUpdateSubscriptionMessage": "<string>",
"fulfilledText": "<string>",
"goBackButtonText": "<string>",
"goBackRedirectLink": "<string>",
"helloNameText": "<string>",
"hideDetailsText": "<string>",
"historyLabelText": "<string>",
"id": 123,
"includeOutOfStockProduct": true,
"initialDiscountNoteDescription": "<string>",
"lastAttemptDateLabelText": "<string>",
"lastBillingAttemptFailedText": "<string>",
"lastNameLabelText": "<string>",
"loadMoreProductsText": "<string>",
"loadingProductsText": "<string>",
"localeDate": "<string>",
"manageBtnText": "<string>",
"manageSubscriptionButtonText": "<string>",
"membershipExpireDescription": "<string>",
"membershipExpireText": "<string>",
"membershipPerksDetailsText": "<string>",
"missedBillingAlertText": "<string>",
"monthText": "<string>",
"monthsLabelText": "<string>",
"newPlanText": "<string>",
"nextBtnText": "<string>",
"nextDeliveryDate": "<string>",
"noBtnText": "<string>",
"noPaymentMethodFoundText": "<string>",
"noProductsAvailableText": "<string>",
"oneTimePurchaseDisplayMessageText": "<string>",
"oneTimePurchaseMessageText": "<string>",
"oneTimePurchaseNoteText": "<string>",
"oneTimePurchaseTitleCP": "<string>",
"openBadgeText": "<string>",
"orderDateLabelText": "<string>",
"orderNoLabelText": "<string>",
"orderNoteFlag": true,
"orderNoteText": "<string>",
"pauseBadgeText": "<string>",
"pauseMembershipLabel": "<string>",
"pauseMembershipMessageText": "<string>",
"pauseResumeSub": true,
"pauseSubscriptionText": "<string>",
"paymentNotificationText": "<string>",
"pendingDowngradeTitleText": "<string>",
"phoneLabelText": "<string>",
"pleaseWaitLoaderText": "<string>",
"portalLoginLinkText": "<string>",
"preventCancellationBeforeDays": "<string>",
"preventCancellationBeforeDaysMessage": "<string>",
"previousBtnText": "<string>",
"productAddMessageText": "<string>",
"productConfirmationButtonLabel": "<string>",
"productInSubscriptionText": "<string>",
"productLabelText": "<string>",
"productRemovedTooltip": "<string>",
"productReplaceWarningText": "<string>",
"provinceCodeLabelText": "<string>",
"provinceLabelText": "<string>",
"purchaseOptionLabelText": "<string>",
"queueBadgeText": "<string>",
"redeemRewardsText": "<string>",
"removeButtonText": "<string>",
"removedTagOnFreeTrial": "<string>",
"resumeMembershipLabel": "<string>",
"resumeSub": true,
"resumeSubscriptionDescriptionText": "<string>",
"resumeSubscriptionText": "<string>",
"retrieveMagicLinkDescription": "<string>",
"retrieveMagicLinkText": "<string>",
"rewardsText": "<string>",
"samePriceText": "<string>",
"saveButtonLabel": "<string>",
"scheduleDowngradeText": "<string>",
"scheduleUpgradeText": "<string>",
"seeMoreDetailsText": "<string>",
"seeMoreProductBtnText": "<string>",
"selectCancellationReasonLabelText": "<string>",
"selectDeliveryMethodLabel": "<string>",
"selectNewPlanText": "<string>",
"selectProductLabelText": "<string>",
"sendEmailTextV2": "<string>",
"shippingAddressLabel": "<string>",
"shippingLabelText": "<string>",
"shippingMethodLabel": "<string>",
"shippingOptionText": "<string>",
"showShipment": true,
"showUpcomingOrdersLabel": "<string>",
"skipBadgeText": "<string>",
"skipFirstPage": true,
"skipOrderButtonText": "<string>",
"subTotalLabelText": "<string>",
"subscriptionActivatedMessageText": "<string>",
"subscriptionDiscount": 123,
"subscriptionPausedMessageText": "<string>",
"subtotalLabel": "<string>",
"successStatusText": "<string>",
"successText": "<string>",
"topHtml": "<string>",
"totalPricePerDeliveryText": "<string>",
"translationUpdateRequest": {
"id": 123,
"value": "<string>"
},
"unableToUpdateSubscriptionStatusMessageText": "<string>",
"upSellMessage": "<string>",
"upcomingFulfillmentText": "<string>",
"upcomingOrderChangePopupFailureClosebtnText": "<string>",
"upcomingOrderChangePopupFailureDescriptionText": "<string>",
"upcomingOrderChangePopupFailureTitleText": "<string>",
"upcomingOrderChangePopupSuccessClosebtnText": "<string>",
"upcomingOrderChangePopupSuccessDescriptionText": "<string>",
"upcomingOrderChangePopupSuccessTitleText": "<string>",
"updateButtonText": "<string>",
"updateChangeOrderBtnText": "<string>",
"updateEditShippingButtonText": "<string>",
"updateShipmentBillingDate": true,
"upgradeBadgeText": "<string>",
"useUrlWithCustomerId": true,
"viewAttributeLabelText": "<string>",
"weekText": "<string>",
"weeksLabelText": "<string>",
"welcomeText": "<string>",
"yearText": "<string>",
"yearsLabelText": "<string>",
"yesBtnText": "<string>",
"yourAvailableRewardsPointsText": "<string>",
"yourRewardsText": "<string>",
"zipLabelText": "<string>"
}{
"amountLbl": "<string>",
"cancelAccordionTitle": "<string>",
"cancelFreqBtnText": "<string>",
"cancelSubscriptionBtnText": "<string>",
"cardExpiryText": "<string>",
"cardHolderNameText": "<string>",
"cardLastFourDigitText": "<string>",
"cardTypeText": "<string>",
"editFrequencyBtnText": "<string>",
"nextOrderDateLbl": "<string>",
"nextOrderText": "<string>",
"noSubscriptionMessage": "<string>",
"orderFrequencyText": "<string>",
"orderNoLbl": "<string>",
"paymentDetailAccordionTitle": "<string>",
"paymentInfoText": "<string>",
"paymentMethodTypeText": "<string>",
"quantityLbl": "<string>",
"shop": "<string>",
"statusLbl": "<string>",
"statusText": "<string>",
"subscriptionNoText": "<string>",
"totalProductsText": "<string>",
"upcomingOrderAccordionTitle": "<string>",
"updateFreqBtnText": "<string>",
"updatePaymentBtnText": "<string>",
"updatePaymentMessage": "<string>",
"acceptBtnText": "<string>",
"activeBadgeText": "<string>",
"addAdditionalProduct": true,
"addNewButtonText": "<string>",
"addOneTimeProduct": true,
"addProductButtonText": "<string>",
"addProductFinishedMessageText": "<string>",
"addProductLabelText": "<string>",
"addProductOnlyForSameProductVariant": true,
"addToSubscriptionTitleCP": "<string>",
"additionalFeedbackLabel": "<string>",
"address1LabelText": "<string>",
"address2LabelText": "<string>",
"addressHeaderTitleText": "<string>",
"afterCycleDiscountNoteDescription": "<string>",
"allowCancellationBeforeDays": "<string>",
"applySubscriptionDiscount": true,
"attributeHeadingText": "<string>",
"attributeNameLabelText": "<string>",
"attributeValue": "<string>",
"backToAccountLabel": "<string>",
"bottomHtml": "<string>",
"cancelButtonText": "<string>",
"cancelChangeOrderBtnText": "<string>",
"cancelEditShippingButtonText": "<string>",
"cancelPendingDowngradeBtnText": "<string>",
"cancelPendingDowngradeText": "<string>",
"cancelPendingUpgradeBtnText": "<string>",
"cancelPendingUpgradeText": "<string>",
"cancelSub": true,
"cancelSubscriptionConfirmPayAsYouGoText": "<string>",
"cancelSubscriptionConfirmPrepaidText": "<string>",
"cancelSubscriptionMinimumBillingIterationsMessage": "<string>",
"cancelSubscriptionPayAsYouGoButtonText": "<string>",
"cancelSubscriptionPrepaidButtonText": "<string>",
"cancellationFeedbackLabelText": "<string>",
"cancellationReasonLabelText": "<string>",
"cancellationSecurityModalMessage": "<string>",
"cancellationSecurityModalTitle": "<string>",
"cancelledOnLabelText": "<string>",
"changeNextOrderDate": true,
"changeOrderFrequency": true,
"changeShippingAddressFlag": true,
"changeVariantLabelText": "<string>",
"chooseAnotherPaymentMethodText": "<string>",
"choosePurchaseOptionLabelText": "<string>",
"cityLabelText": "<string>",
"clickHereText": "<string>",
"closeBadgeText": "<string>",
"closeBtnText": "<string>",
"closeButtonLabel": "<string>",
"companyLabelText": "<string>",
"conformationPopupForCancellationDiscountText": "<string>",
"continueButtonLabel": "<string>",
"contractErrorMessageText": "<string>",
"contractUpdateMessageText": "<string>",
"countryCodeLabelText": "<string>",
"countryLabelText": "<string>",
"createAdditionalOrder": true,
"creditCardText": "<string>",
"currentMembershipPlanText": "<string>",
"currentMembershipText": "<string>",
"customerIdText": "<string>",
"customerPortalSettingJson": "<string>",
"dateFormat": "<string>",
"dayText": "<string>",
"daysLabelText": "<string>",
"deleteButtonText": "<string>",
"deleteConfirmationMsgText": "<string>",
"deleteMsgText": "<string>",
"deleteProductFlag": true,
"deliverLabelText": "<string>",
"deliveryFrequencyLabelText": "<string>",
"deliveryPriceText": "<string>",
"descriptionLength": "<string>",
"discountCode": true,
"discountCodeApplyButtonText": "<string>",
"discountCodeText": "<string>",
"discountCouponAppliedText": "<string>",
"discountMessageOnCancellation": "<string>",
"discountNoteTitle": "<string>",
"discountRecurringCycleLimitOnCancellation": 123,
"downgradeBadgeText": "<string>",
"downgradeMembershipLabel": "<string>",
"editChangeOrderBtnText": "<string>",
"editProductButtonText": "<string>",
"editProductFlag": true,
"editQuantityLabelText": "<string>",
"editShippingModalLabel": "<string>",
"enableMembershipHistory": true,
"enableRedirectMyAccountButton": true,
"enableResendMagicLink": true,
"enableShowProductDescription": true,
"enableViewAttributes": true,
"endingWithText": "<string>",
"errorText": "<string>",
"everyLabelText": "<string>",
"expiredTokenText": "<string>",
"failureStatusText": "<string>",
"finishLabelText": "<string>",
"firstNameLabelText": "<string>",
"freezeOrderTillMinCycle": true,
"freezeUpdateSubscriptionMessage": "<string>",
"fulfilledText": "<string>",
"goBackButtonText": "<string>",
"goBackRedirectLink": "<string>",
"helloNameText": "<string>",
"hideDetailsText": "<string>",
"historyLabelText": "<string>",
"id": 123,
"includeOutOfStockProduct": true,
"initialDiscountNoteDescription": "<string>",
"lastAttemptDateLabelText": "<string>",
"lastBillingAttemptFailedText": "<string>",
"lastNameLabelText": "<string>",
"loadMoreProductsText": "<string>",
"loadingProductsText": "<string>",
"localeDate": "<string>",
"manageBtnText": "<string>",
"manageSubscriptionButtonText": "<string>",
"membershipExpireDescription": "<string>",
"membershipExpireText": "<string>",
"membershipPerksDetailsText": "<string>",
"missedBillingAlertText": "<string>",
"monthText": "<string>",
"monthsLabelText": "<string>",
"newPlanText": "<string>",
"nextBtnText": "<string>",
"nextDeliveryDate": "<string>",
"noBtnText": "<string>",
"noPaymentMethodFoundText": "<string>",
"noProductsAvailableText": "<string>",
"oneTimePurchaseDisplayMessageText": "<string>",
"oneTimePurchaseMessageText": "<string>",
"oneTimePurchaseNoteText": "<string>",
"oneTimePurchaseTitleCP": "<string>",
"openBadgeText": "<string>",
"orderDateLabelText": "<string>",
"orderNoLabelText": "<string>",
"orderNoteFlag": true,
"orderNoteText": "<string>",
"pauseBadgeText": "<string>",
"pauseMembershipLabel": "<string>",
"pauseMembershipMessageText": "<string>",
"pauseResumeSub": true,
"pauseSubscriptionText": "<string>",
"paymentNotificationText": "<string>",
"pendingDowngradeTitleText": "<string>",
"phoneLabelText": "<string>",
"pleaseWaitLoaderText": "<string>",
"portalLoginLinkText": "<string>",
"preventCancellationBeforeDays": "<string>",
"preventCancellationBeforeDaysMessage": "<string>",
"previousBtnText": "<string>",
"productAddMessageText": "<string>",
"productConfirmationButtonLabel": "<string>",
"productInSubscriptionText": "<string>",
"productLabelText": "<string>",
"productRemovedTooltip": "<string>",
"productReplaceWarningText": "<string>",
"provinceCodeLabelText": "<string>",
"provinceLabelText": "<string>",
"purchaseOptionLabelText": "<string>",
"queueBadgeText": "<string>",
"redeemRewardsText": "<string>",
"removeButtonText": "<string>",
"removedTagOnFreeTrial": "<string>",
"resumeMembershipLabel": "<string>",
"resumeSub": true,
"resumeSubscriptionDescriptionText": "<string>",
"resumeSubscriptionText": "<string>",
"retrieveMagicLinkDescription": "<string>",
"retrieveMagicLinkText": "<string>",
"rewardsText": "<string>",
"samePriceText": "<string>",
"saveButtonLabel": "<string>",
"scheduleDowngradeText": "<string>",
"scheduleUpgradeText": "<string>",
"seeMoreDetailsText": "<string>",
"seeMoreProductBtnText": "<string>",
"selectCancellationReasonLabelText": "<string>",
"selectDeliveryMethodLabel": "<string>",
"selectNewPlanText": "<string>",
"selectProductLabelText": "<string>",
"sendEmailTextV2": "<string>",
"shippingAddressLabel": "<string>",
"shippingLabelText": "<string>",
"shippingMethodLabel": "<string>",
"shippingOptionText": "<string>",
"showShipment": true,
"showUpcomingOrdersLabel": "<string>",
"skipBadgeText": "<string>",
"skipFirstPage": true,
"skipOrderButtonText": "<string>",
"subTotalLabelText": "<string>",
"subscriptionActivatedMessageText": "<string>",
"subscriptionDiscount": 123,
"subscriptionPausedMessageText": "<string>",
"subtotalLabel": "<string>",
"successStatusText": "<string>",
"successText": "<string>",
"topHtml": "<string>",
"totalPricePerDeliveryText": "<string>",
"translationUpdateRequest": {
"id": 123,
"value": "<string>"
},
"unableToUpdateSubscriptionStatusMessageText": "<string>",
"upSellMessage": "<string>",
"upcomingFulfillmentText": "<string>",
"upcomingOrderChangePopupFailureClosebtnText": "<string>",
"upcomingOrderChangePopupFailureDescriptionText": "<string>",
"upcomingOrderChangePopupFailureTitleText": "<string>",
"upcomingOrderChangePopupSuccessClosebtnText": "<string>",
"upcomingOrderChangePopupSuccessDescriptionText": "<string>",
"upcomingOrderChangePopupSuccessTitleText": "<string>",
"updateButtonText": "<string>",
"updateChangeOrderBtnText": "<string>",
"updateEditShippingButtonText": "<string>",
"updateShipmentBillingDate": true,
"upgradeBadgeText": "<string>",
"useUrlWithCustomerId": true,
"viewAttributeLabelText": "<string>",
"weekText": "<string>",
"weeksLabelText": "<string>",
"welcomeText": "<string>",
"yearText": "<string>",
"yearsLabelText": "<string>",
"yesBtnText": "<string>",
"yourAvailableRewardsPointsText": "<string>",
"yourRewardsText": "<string>",
"zipLabelText": "<string>"
}{
"amountLbl": "<string>",
"cancelAccordionTitle": "<string>",
"cancelFreqBtnText": "<string>",
"cancelSubscriptionBtnText": "<string>",
"cardExpiryText": "<string>",
"cardHolderNameText": "<string>",
"cardLastFourDigitText": "<string>",
"cardTypeText": "<string>",
"editFrequencyBtnText": "<string>",
"nextOrderDateLbl": "<string>",
"nextOrderText": "<string>",
"noSubscriptionMessage": "<string>",
"orderFrequencyText": "<string>",
"orderNoLbl": "<string>",
"paymentDetailAccordionTitle": "<string>",
"paymentInfoText": "<string>",
"paymentMethodTypeText": "<string>",
"quantityLbl": "<string>",
"shop": "<string>",
"statusLbl": "<string>",
"statusText": "<string>",
"subscriptionNoText": "<string>",
"totalProductsText": "<string>",
"upcomingOrderAccordionTitle": "<string>",
"updateFreqBtnText": "<string>",
"updatePaymentBtnText": "<string>",
"updatePaymentMessage": "<string>",
"acceptBtnText": "<string>",
"activeBadgeText": "<string>",
"addAdditionalProduct": true,
"addNewButtonText": "<string>",
"addOneTimeProduct": true,
"addProductButtonText": "<string>",
"addProductFinishedMessageText": "<string>",
"addProductLabelText": "<string>",
"addProductOnlyForSameProductVariant": true,
"addToSubscriptionTitleCP": "<string>",
"additionalFeedbackLabel": "<string>",
"address1LabelText": "<string>",
"address2LabelText": "<string>",
"addressHeaderTitleText": "<string>",
"afterCycleDiscountNoteDescription": "<string>",
"allowCancellationBeforeDays": "<string>",
"applySubscriptionDiscount": true,
"attributeHeadingText": "<string>",
"attributeNameLabelText": "<string>",
"attributeValue": "<string>",
"backToAccountLabel": "<string>",
"bottomHtml": "<string>",
"cancelButtonText": "<string>",
"cancelChangeOrderBtnText": "<string>",
"cancelEditShippingButtonText": "<string>",
"cancelPendingDowngradeBtnText": "<string>",
"cancelPendingDowngradeText": "<string>",
"cancelPendingUpgradeBtnText": "<string>",
"cancelPendingUpgradeText": "<string>",
"cancelSub": true,
"cancelSubscriptionConfirmPayAsYouGoText": "<string>",
"cancelSubscriptionConfirmPrepaidText": "<string>",
"cancelSubscriptionMinimumBillingIterationsMessage": "<string>",
"cancelSubscriptionPayAsYouGoButtonText": "<string>",
"cancelSubscriptionPrepaidButtonText": "<string>",
"cancellationFeedbackLabelText": "<string>",
"cancellationReasonLabelText": "<string>",
"cancellationSecurityModalMessage": "<string>",
"cancellationSecurityModalTitle": "<string>",
"cancelledOnLabelText": "<string>",
"changeNextOrderDate": true,
"changeOrderFrequency": true,
"changeShippingAddressFlag": true,
"changeVariantLabelText": "<string>",
"chooseAnotherPaymentMethodText": "<string>",
"choosePurchaseOptionLabelText": "<string>",
"cityLabelText": "<string>",
"clickHereText": "<string>",
"closeBadgeText": "<string>",
"closeBtnText": "<string>",
"closeButtonLabel": "<string>",
"companyLabelText": "<string>",
"conformationPopupForCancellationDiscountText": "<string>",
"continueButtonLabel": "<string>",
"contractErrorMessageText": "<string>",
"contractUpdateMessageText": "<string>",
"countryCodeLabelText": "<string>",
"countryLabelText": "<string>",
"createAdditionalOrder": true,
"creditCardText": "<string>",
"currentMembershipPlanText": "<string>",
"currentMembershipText": "<string>",
"customerIdText": "<string>",
"customerPortalSettingJson": "<string>",
"dateFormat": "<string>",
"dayText": "<string>",
"daysLabelText": "<string>",
"deleteButtonText": "<string>",
"deleteConfirmationMsgText": "<string>",
"deleteMsgText": "<string>",
"deleteProductFlag": true,
"deliverLabelText": "<string>",
"deliveryFrequencyLabelText": "<string>",
"deliveryPriceText": "<string>",
"descriptionLength": "<string>",
"discountCode": true,
"discountCodeApplyButtonText": "<string>",
"discountCodeText": "<string>",
"discountCouponAppliedText": "<string>",
"discountMessageOnCancellation": "<string>",
"discountNoteTitle": "<string>",
"discountRecurringCycleLimitOnCancellation": 123,
"downgradeBadgeText": "<string>",
"downgradeMembershipLabel": "<string>",
"editChangeOrderBtnText": "<string>",
"editProductButtonText": "<string>",
"editProductFlag": true,
"editQuantityLabelText": "<string>",
"editShippingModalLabel": "<string>",
"enableMembershipHistory": true,
"enableRedirectMyAccountButton": true,
"enableResendMagicLink": true,
"enableShowProductDescription": true,
"enableViewAttributes": true,
"endingWithText": "<string>",
"errorText": "<string>",
"everyLabelText": "<string>",
"expiredTokenText": "<string>",
"failureStatusText": "<string>",
"finishLabelText": "<string>",
"firstNameLabelText": "<string>",
"freezeOrderTillMinCycle": true,
"freezeUpdateSubscriptionMessage": "<string>",
"fulfilledText": "<string>",
"goBackButtonText": "<string>",
"goBackRedirectLink": "<string>",
"helloNameText": "<string>",
"hideDetailsText": "<string>",
"historyLabelText": "<string>",
"id": 123,
"includeOutOfStockProduct": true,
"initialDiscountNoteDescription": "<string>",
"lastAttemptDateLabelText": "<string>",
"lastBillingAttemptFailedText": "<string>",
"lastNameLabelText": "<string>",
"loadMoreProductsText": "<string>",
"loadingProductsText": "<string>",
"localeDate": "<string>",
"manageBtnText": "<string>",
"manageSubscriptionButtonText": "<string>",
"membershipExpireDescription": "<string>",
"membershipExpireText": "<string>",
"membershipPerksDetailsText": "<string>",
"missedBillingAlertText": "<string>",
"monthText": "<string>",
"monthsLabelText": "<string>",
"newPlanText": "<string>",
"nextBtnText": "<string>",
"nextDeliveryDate": "<string>",
"noBtnText": "<string>",
"noPaymentMethodFoundText": "<string>",
"noProductsAvailableText": "<string>",
"oneTimePurchaseDisplayMessageText": "<string>",
"oneTimePurchaseMessageText": "<string>",
"oneTimePurchaseNoteText": "<string>",
"oneTimePurchaseTitleCP": "<string>",
"openBadgeText": "<string>",
"orderDateLabelText": "<string>",
"orderNoLabelText": "<string>",
"orderNoteFlag": true,
"orderNoteText": "<string>",
"pauseBadgeText": "<string>",
"pauseMembershipLabel": "<string>",
"pauseMembershipMessageText": "<string>",
"pauseResumeSub": true,
"pauseSubscriptionText": "<string>",
"paymentNotificationText": "<string>",
"pendingDowngradeTitleText": "<string>",
"phoneLabelText": "<string>",
"pleaseWaitLoaderText": "<string>",
"portalLoginLinkText": "<string>",
"preventCancellationBeforeDays": "<string>",
"preventCancellationBeforeDaysMessage": "<string>",
"previousBtnText": "<string>",
"productAddMessageText": "<string>",
"productConfirmationButtonLabel": "<string>",
"productInSubscriptionText": "<string>",
"productLabelText": "<string>",
"productRemovedTooltip": "<string>",
"productReplaceWarningText": "<string>",
"provinceCodeLabelText": "<string>",
"provinceLabelText": "<string>",
"purchaseOptionLabelText": "<string>",
"queueBadgeText": "<string>",
"redeemRewardsText": "<string>",
"removeButtonText": "<string>",
"removedTagOnFreeTrial": "<string>",
"resumeMembershipLabel": "<string>",
"resumeSub": true,
"resumeSubscriptionDescriptionText": "<string>",
"resumeSubscriptionText": "<string>",
"retrieveMagicLinkDescription": "<string>",
"retrieveMagicLinkText": "<string>",
"rewardsText": "<string>",
"samePriceText": "<string>",
"saveButtonLabel": "<string>",
"scheduleDowngradeText": "<string>",
"scheduleUpgradeText": "<string>",
"seeMoreDetailsText": "<string>",
"seeMoreProductBtnText": "<string>",
"selectCancellationReasonLabelText": "<string>",
"selectDeliveryMethodLabel": "<string>",
"selectNewPlanText": "<string>",
"selectProductLabelText": "<string>",
"sendEmailTextV2": "<string>",
"shippingAddressLabel": "<string>",
"shippingLabelText": "<string>",
"shippingMethodLabel": "<string>",
"shippingOptionText": "<string>",
"showShipment": true,
"showUpcomingOrdersLabel": "<string>",
"skipBadgeText": "<string>",
"skipFirstPage": true,
"skipOrderButtonText": "<string>",
"subTotalLabelText": "<string>",
"subscriptionActivatedMessageText": "<string>",
"subscriptionDiscount": 123,
"subscriptionPausedMessageText": "<string>",
"subtotalLabel": "<string>",
"successStatusText": "<string>",
"successText": "<string>",
"topHtml": "<string>",
"totalPricePerDeliveryText": "<string>",
"translationUpdateRequest": {
"id": 123,
"value": "<string>"
},
"unableToUpdateSubscriptionStatusMessageText": "<string>",
"upSellMessage": "<string>",
"upcomingFulfillmentText": "<string>",
"upcomingOrderChangePopupFailureClosebtnText": "<string>",
"upcomingOrderChangePopupFailureDescriptionText": "<string>",
"upcomingOrderChangePopupFailureTitleText": "<string>",
"upcomingOrderChangePopupSuccessClosebtnText": "<string>",
"upcomingOrderChangePopupSuccessDescriptionText": "<string>",
"upcomingOrderChangePopupSuccessTitleText": "<string>",
"updateButtonText": "<string>",
"updateChangeOrderBtnText": "<string>",
"updateEditShippingButtonText": "<string>",
"updateShipmentBillingDate": true,
"upgradeBadgeText": "<string>",
"useUrlWithCustomerId": true,
"viewAttributeLabelText": "<string>",
"weekText": "<string>",
"weeksLabelText": "<string>",
"welcomeText": "<string>",
"yearText": "<string>",
"yearsLabelText": "<string>",
"yesBtnText": "<string>",
"yourAvailableRewardsPointsText": "<string>",
"yourRewardsText": "<string>",
"zipLabelText": "<string>"
}