Storefront Widgets & Labels
List storefront widget label translations
GET
List storefront widget label translations
Headers
Query Parameters
Response
200 - */*
OK
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://loyalty-admin.appstle.com/api/external/widget-labels \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://loyalty-admin.appstle.com/api/external/widget-labels"
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://loyalty-admin.appstle.com/api/external/widget-labels', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://loyalty-admin.appstle.com/api/external/widget-labels';
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://loyalty-admin.appstle.com/api/external/widget-labels",
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://loyalty-admin.appstle.com/api/external/widget-labels"
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://loyalty-admin.appstle.com/api/external/widget-labels")
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[
{
"locale": "<string>",
"acquirePointsLabel": "<string>",
"acquirePointsLoggedOutText": "<string>",
"acquireStoreCreditLabel": "<string>",
"alreadyHaveAnAccountLabel": "<string>",
"approvedStatusLabel": "<string>",
"authenticationLabel": "<string>",
"availablePoints": "<string>",
"birthdayActionLabel": "<string>",
"birthdayDayPlaceholderLabel": "<string>",
"birthdayMonthPlaceholderLabel": "<string>",
"birthdayProfileLabel": "<string>",
"birthdayTitleLabel": "<string>",
"birthdayUpdatedToastLabel": "<string>",
"birthdayYearPlaceholderLabel": "<string>",
"cartWidgetAvailableBalanceLabel": "<string>",
"cartWidgetLoginLinkLabel": "<string>",
"cartWidgetLoginMessageLabel": "<string>",
"cartWidgetRewardsButtonLabel": "<string>",
"checkThankYouAcquiredPointsHeadingLabel": "<string>",
"checkoutAcquiredPointsLabel": "<string>",
"checkoutAvailableRewardsLabel": "<string>",
"checkoutDiscountCodeApplyButtonLabel": "<string>",
"checkoutEmptyRewardsLabel": "<string>",
"checkoutPendingPointsLabel": "<string>",
"checkoutRedeemLabel": "<string>",
"checkoutRedeemLoginDescription": "<string>",
"checkoutRedeemLoginLabel": "<string>",
"checkoutSelectRedeemRuleDropdownLabel": "<string>",
"checkoutToggleAvailableRewardsButtonLabel": "<string>",
"checkoutToggleRedeemButtonLabel": "<string>",
"checkoutTotalAcquirePoints": "<string>",
"checkoutTotalAcquirePointsDescription": "<string>",
"checkoutTotalStoreCreditAcquirePoints": "<string>",
"checkoutViewMoreDiscountCodeButtonLabel": "<string>",
"chooseAnOptionLabel": "<string>",
"claimGiftHeaderText": "<string>",
"claimReferralEmailFieldHintText": "<string>",
"claimReferralEmailFieldText": "<string>",
"claimReferralGiftButtonText": "<string>",
"claimReferralGiftDescriptionText": "<string>",
"claimRewardButtonLabel": "<string>",
"claimedStatusLabel": "<string>",
"createAccountLabel": "<string>",
"creditRewardDetailsHelpLabel": "<string>",
"currentVipTierBadgeLabel": "<string>",
"currentVipTierText": "<string>",
"customerHistoryDescriptionLabel": "<string>",
"customerHistoryLabel": "<string>",
"customerReferralClaimedStatus": "<string>",
"customerReferralPendingStatus": "<string>",
"customerReferralRecurringStatus": "<string>",
"dailyLimitExceedText": "<string>",
"default": true,
"discountAppliedAtCheckoutMessage": "<string>",
"discountAppliedLabel": "<string>",
"discountCodeLabel": "<string>",
"dynamicPointsHelpText": "<string>",
"dynamicPointsLabel": "<string>",
"emailValidationLabel": "<string>",
"enrollLoyaltyProgramActionLabel": "<string>",
"enrollLoyaltyProgramDescription": "<string>",
"enrollLoyaltyProgramTitle": "<string>",
"enrolledSuccessMessage": "<string>",
"excludeCustomerLabel": "<string>",
"exploreLabel": "<string>",
"faq": "<string>",
"freeProductRewardAddToCart": "<string>",
"freeProductRewardAddedSuccessMessage": "<string>",
"historyActivityDetails": "<string>",
"historyDate": "<string>",
"historyPointsAdjustment": "<string>",
"historyStatus": "<string>",
"homeGreetings": "<string>",
"homeSignup": "<string>",
"howItWorksStep1Count": "<string>",
"howItWorksStep1Description": "<string>",
"howItWorksStep1Title": "<string>",
"howItWorksStep2Count": "<string>",
"howItWorksStep2Description": "<string>",
"howItWorksStep2Title": "<string>",
"howItWorksStep3Count": "<string>",
"howItWorksStep3Description": "<string>",
"howItWorksStep3Title": "<string>",
"howItWorksTitle": "<string>",
"howItWorksTitleDescription": "<string>",
"id": 123,
"includeCustomerLabel": "<string>",
"isDefault": true,
"labelsJson": "<string>",
"loyaltyOptOutActiveLabel": "<string>",
"loyaltyOptOutLabel": "<string>",
"loyaltyOptOutSettingsLabel": "<string>",
"loyaltyOptoutActive": "<string>",
"loyaltyOptoutInactive": "<string>",
"loyaltyPageHeroV2AuthenticatedHeading": "<string>",
"loyaltyPageHeroV2Heading": "<string>",
"loyaltyPageHeroV2SubHeading": "<string>",
"loyaltyPageMetaDescription": "<string>",
"loyaltyPageMetaTitle": "<string>",
"loyaltyStatusLabel": "<string>",
"manageLoyaltyButtonLabel": "<string>",
"membershipRewardTitleLabel": "<string>",
"minimumAmountSpentForRedeemText": "<string>",
"minimumOrderCountForRedeemText": "<string>",
"minimumPointsForRedeemText": "<string>",
"minimumRedeemRequiredPointsLabel": "<string>",
"noCustomerHistoryDescriptionLabel": "<string>",
"noCustomerHistoryLabel": "<string>",
"noEarnRulesLabel": "<string>",
"noRedeemRulesLabel": "<string>",
"noRefferralAvailableText": "<string>",
"notEligibleLabel": "<string>",
"noteHeadingLabel": "<string>",
"otherRulesRedirectActionLabel": "<string>",
"pendingStatusLabel": "<string>",
"perTransactionLimitExceedText": "<string>",
"pointExpirationDateLabel": "<string>",
"pointsBalanceLabel": "<string>",
"popupAvailableRewardsContentText": "<string>",
"popupAvailableRewardsHeadingText": "<string>",
"popupCardActionText": "<string>",
"popupCardContentText": "<string>",
"popupCardHeadingText": "<string>",
"popupCommunityContentText": "<string>",
"popupCommunityHeadingText": "<string>",
"popupCopiedDiscount": "<string>",
"popupCopyDiscount": "<string>",
"popupDiscountCodeGenerated": "<string>",
"popupEarnPointDescriptionText": "<string>",
"popupEarnRewardsHeadingText": "<string>",
"popupEarnTilesText": "<string>",
"popupFAQAskedQuestionHeadingText": "<string>",
"popupFAQHeadingText": "<string>",
"popupRedeemRewardsHeadingText": "<string>",
"popupRedeemTilesText": "<string>",
"popupReferralContentText": "<string>",
"popupReferralTitleText": "<string>",
"popupRemainingPointsHeadingText": "<string>",
"popupRewardPointContentText": "<string>",
"popupRewardPointTitleText": "<string>",
"popupRewardsDetailsHeadingText": "<string>",
"popupWelcomeText": "<string>",
"programUpdateMessage": "<string>",
"recurringStatusLabel": "<string>",
"redeemActionLabel": "<string>",
"redeemLimitExceedText": "<string>",
"referButtonLabel": "<string>",
"referYourFriendContentText": "<string>",
"referYourFriendTitleText": "<string>",
"referralCompletedText": "<string>",
"referralCustomerGetText": "<string>",
"referralFriendGetText": "<string>",
"referralLinkSentDescription": "<string>",
"referralLinkSentLabel": "<string>",
"referredByText": "<string>",
"referredEmailHeadingLabel": "<string>",
"rejectedStatusLabel": "<string>",
"reviewRuleRedirectActionLabel": "<string>",
"rewardDetailsButtonLabel": "<string>",
"rewardDetailsHelpLabel": "<string>",
"rewardDetailsTitleLabel": "<string>",
"rewardsDetailsExpireDate": "<string>",
"rewardsExpirationLabel": "<string>",
"sendEmailButtonText": "<string>",
"sendEmailHeadingText": "<string>",
"sendRefferralLink": "<string>",
"sentDiscountCodeToEmailText": "<string>",
"shareReferralEmailFieldText": "<string>",
"shareReferralLinkLabel": "<string>",
"shareSocialMediaLabel": "<string>",
"shop": "<string>",
"socialMediaActionLabel": "<string>",
"statusHeadingLabel": "<string>",
"storeCreditApplyGuideLabel": "<string>",
"storeCreditBalanceLabel": "<string>",
"storeOnSaleForRedeemText": "<string>",
"subscribeRuleRedirectActionLabel": "<string>",
"toastErrorMsg": "<string>",
"totalAcquiredPointsLabel": "<string>",
"totalAcquiredStoreCreditsLabel": "<string>",
"transactionHistoryPaginationLabel": "<string>",
"vipAchievableTierLabel": "<string>",
"vipCurrentTierLabel": "<string>",
"vipEarnPointLabel": "<string>",
"vipRewardLabel": "<string>",
"vipSpentAmountLabel": "<string>",
"vipStatusLabel": "<string>",
"vipTierBenefits": "<string>",
"vipTierDetailsText": "<string>",
"vipTierTitleLabel": "<string>",
"widgetCopiedLabel": "<string>",
"widgetDateTimeFormat": "<string>",
"widgetTitle": "<string>",
"yourReferralsHeadingLabel": "<string>"
}
]OK
curl --request GET \
--url https://loyalty-admin.appstle.com/api/external/widget-labels \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://loyalty-admin.appstle.com/api/external/widget-labels"
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://loyalty-admin.appstle.com/api/external/widget-labels', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://loyalty-admin.appstle.com/api/external/widget-labels';
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://loyalty-admin.appstle.com/api/external/widget-labels",
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://loyalty-admin.appstle.com/api/external/widget-labels"
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://loyalty-admin.appstle.com/api/external/widget-labels")
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[
{
"locale": "<string>",
"acquirePointsLabel": "<string>",
"acquirePointsLoggedOutText": "<string>",
"acquireStoreCreditLabel": "<string>",
"alreadyHaveAnAccountLabel": "<string>",
"approvedStatusLabel": "<string>",
"authenticationLabel": "<string>",
"availablePoints": "<string>",
"birthdayActionLabel": "<string>",
"birthdayDayPlaceholderLabel": "<string>",
"birthdayMonthPlaceholderLabel": "<string>",
"birthdayProfileLabel": "<string>",
"birthdayTitleLabel": "<string>",
"birthdayUpdatedToastLabel": "<string>",
"birthdayYearPlaceholderLabel": "<string>",
"cartWidgetAvailableBalanceLabel": "<string>",
"cartWidgetLoginLinkLabel": "<string>",
"cartWidgetLoginMessageLabel": "<string>",
"cartWidgetRewardsButtonLabel": "<string>",
"checkThankYouAcquiredPointsHeadingLabel": "<string>",
"checkoutAcquiredPointsLabel": "<string>",
"checkoutAvailableRewardsLabel": "<string>",
"checkoutDiscountCodeApplyButtonLabel": "<string>",
"checkoutEmptyRewardsLabel": "<string>",
"checkoutPendingPointsLabel": "<string>",
"checkoutRedeemLabel": "<string>",
"checkoutRedeemLoginDescription": "<string>",
"checkoutRedeemLoginLabel": "<string>",
"checkoutSelectRedeemRuleDropdownLabel": "<string>",
"checkoutToggleAvailableRewardsButtonLabel": "<string>",
"checkoutToggleRedeemButtonLabel": "<string>",
"checkoutTotalAcquirePoints": "<string>",
"checkoutTotalAcquirePointsDescription": "<string>",
"checkoutTotalStoreCreditAcquirePoints": "<string>",
"checkoutViewMoreDiscountCodeButtonLabel": "<string>",
"chooseAnOptionLabel": "<string>",
"claimGiftHeaderText": "<string>",
"claimReferralEmailFieldHintText": "<string>",
"claimReferralEmailFieldText": "<string>",
"claimReferralGiftButtonText": "<string>",
"claimReferralGiftDescriptionText": "<string>",
"claimRewardButtonLabel": "<string>",
"claimedStatusLabel": "<string>",
"createAccountLabel": "<string>",
"creditRewardDetailsHelpLabel": "<string>",
"currentVipTierBadgeLabel": "<string>",
"currentVipTierText": "<string>",
"customerHistoryDescriptionLabel": "<string>",
"customerHistoryLabel": "<string>",
"customerReferralClaimedStatus": "<string>",
"customerReferralPendingStatus": "<string>",
"customerReferralRecurringStatus": "<string>",
"dailyLimitExceedText": "<string>",
"default": true,
"discountAppliedAtCheckoutMessage": "<string>",
"discountAppliedLabel": "<string>",
"discountCodeLabel": "<string>",
"dynamicPointsHelpText": "<string>",
"dynamicPointsLabel": "<string>",
"emailValidationLabel": "<string>",
"enrollLoyaltyProgramActionLabel": "<string>",
"enrollLoyaltyProgramDescription": "<string>",
"enrollLoyaltyProgramTitle": "<string>",
"enrolledSuccessMessage": "<string>",
"excludeCustomerLabel": "<string>",
"exploreLabel": "<string>",
"faq": "<string>",
"freeProductRewardAddToCart": "<string>",
"freeProductRewardAddedSuccessMessage": "<string>",
"historyActivityDetails": "<string>",
"historyDate": "<string>",
"historyPointsAdjustment": "<string>",
"historyStatus": "<string>",
"homeGreetings": "<string>",
"homeSignup": "<string>",
"howItWorksStep1Count": "<string>",
"howItWorksStep1Description": "<string>",
"howItWorksStep1Title": "<string>",
"howItWorksStep2Count": "<string>",
"howItWorksStep2Description": "<string>",
"howItWorksStep2Title": "<string>",
"howItWorksStep3Count": "<string>",
"howItWorksStep3Description": "<string>",
"howItWorksStep3Title": "<string>",
"howItWorksTitle": "<string>",
"howItWorksTitleDescription": "<string>",
"id": 123,
"includeCustomerLabel": "<string>",
"isDefault": true,
"labelsJson": "<string>",
"loyaltyOptOutActiveLabel": "<string>",
"loyaltyOptOutLabel": "<string>",
"loyaltyOptOutSettingsLabel": "<string>",
"loyaltyOptoutActive": "<string>",
"loyaltyOptoutInactive": "<string>",
"loyaltyPageHeroV2AuthenticatedHeading": "<string>",
"loyaltyPageHeroV2Heading": "<string>",
"loyaltyPageHeroV2SubHeading": "<string>",
"loyaltyPageMetaDescription": "<string>",
"loyaltyPageMetaTitle": "<string>",
"loyaltyStatusLabel": "<string>",
"manageLoyaltyButtonLabel": "<string>",
"membershipRewardTitleLabel": "<string>",
"minimumAmountSpentForRedeemText": "<string>",
"minimumOrderCountForRedeemText": "<string>",
"minimumPointsForRedeemText": "<string>",
"minimumRedeemRequiredPointsLabel": "<string>",
"noCustomerHistoryDescriptionLabel": "<string>",
"noCustomerHistoryLabel": "<string>",
"noEarnRulesLabel": "<string>",
"noRedeemRulesLabel": "<string>",
"noRefferralAvailableText": "<string>",
"notEligibleLabel": "<string>",
"noteHeadingLabel": "<string>",
"otherRulesRedirectActionLabel": "<string>",
"pendingStatusLabel": "<string>",
"perTransactionLimitExceedText": "<string>",
"pointExpirationDateLabel": "<string>",
"pointsBalanceLabel": "<string>",
"popupAvailableRewardsContentText": "<string>",
"popupAvailableRewardsHeadingText": "<string>",
"popupCardActionText": "<string>",
"popupCardContentText": "<string>",
"popupCardHeadingText": "<string>",
"popupCommunityContentText": "<string>",
"popupCommunityHeadingText": "<string>",
"popupCopiedDiscount": "<string>",
"popupCopyDiscount": "<string>",
"popupDiscountCodeGenerated": "<string>",
"popupEarnPointDescriptionText": "<string>",
"popupEarnRewardsHeadingText": "<string>",
"popupEarnTilesText": "<string>",
"popupFAQAskedQuestionHeadingText": "<string>",
"popupFAQHeadingText": "<string>",
"popupRedeemRewardsHeadingText": "<string>",
"popupRedeemTilesText": "<string>",
"popupReferralContentText": "<string>",
"popupReferralTitleText": "<string>",
"popupRemainingPointsHeadingText": "<string>",
"popupRewardPointContentText": "<string>",
"popupRewardPointTitleText": "<string>",
"popupRewardsDetailsHeadingText": "<string>",
"popupWelcomeText": "<string>",
"programUpdateMessage": "<string>",
"recurringStatusLabel": "<string>",
"redeemActionLabel": "<string>",
"redeemLimitExceedText": "<string>",
"referButtonLabel": "<string>",
"referYourFriendContentText": "<string>",
"referYourFriendTitleText": "<string>",
"referralCompletedText": "<string>",
"referralCustomerGetText": "<string>",
"referralFriendGetText": "<string>",
"referralLinkSentDescription": "<string>",
"referralLinkSentLabel": "<string>",
"referredByText": "<string>",
"referredEmailHeadingLabel": "<string>",
"rejectedStatusLabel": "<string>",
"reviewRuleRedirectActionLabel": "<string>",
"rewardDetailsButtonLabel": "<string>",
"rewardDetailsHelpLabel": "<string>",
"rewardDetailsTitleLabel": "<string>",
"rewardsDetailsExpireDate": "<string>",
"rewardsExpirationLabel": "<string>",
"sendEmailButtonText": "<string>",
"sendEmailHeadingText": "<string>",
"sendRefferralLink": "<string>",
"sentDiscountCodeToEmailText": "<string>",
"shareReferralEmailFieldText": "<string>",
"shareReferralLinkLabel": "<string>",
"shareSocialMediaLabel": "<string>",
"shop": "<string>",
"socialMediaActionLabel": "<string>",
"statusHeadingLabel": "<string>",
"storeCreditApplyGuideLabel": "<string>",
"storeCreditBalanceLabel": "<string>",
"storeOnSaleForRedeemText": "<string>",
"subscribeRuleRedirectActionLabel": "<string>",
"toastErrorMsg": "<string>",
"totalAcquiredPointsLabel": "<string>",
"totalAcquiredStoreCreditsLabel": "<string>",
"transactionHistoryPaginationLabel": "<string>",
"vipAchievableTierLabel": "<string>",
"vipCurrentTierLabel": "<string>",
"vipEarnPointLabel": "<string>",
"vipRewardLabel": "<string>",
"vipSpentAmountLabel": "<string>",
"vipStatusLabel": "<string>",
"vipTierBenefits": "<string>",
"vipTierDetailsText": "<string>",
"vipTierTitleLabel": "<string>",
"widgetCopiedLabel": "<string>",
"widgetDateTimeFormat": "<string>",
"widgetTitle": "<string>",
"yourReferralsHeadingLabel": "<string>"
}
]