You will learn
Magento supports Shopping Cart Price Rules that can be used to apply a discount to a customer's order. Coupon codes can be created for existing price rules, so that shoppers can easily leverage a given code to apply a discount during the checkout process.
Klaviyo's Coupons for Magento feature allows Magento 1.0 stores to do the following:
- Create new coupons in Klaviyo associated with pre-existing price rules in Magento.
- Include dynamic coupons within flow emails, so each recipient receives a unique code.
This guide will explain how to get setup with Magento coupons in Klaviyo.
Dynamic coupon codes are not currently available when sending campaign emails. Sending unique coupon codes in a campaign would require generating thousands of codes per second. Klaviyo cannot guarantee a specific Magento server's rate-limiting settings will not impact the generation of dynamic coupons at this volume and velocity. Due to this, dynamic coupons are only available when sending flow emails.
Requirements
As a prerequisite, ensure that you've enabled the Magento integration in Klaviyo and installed the Klaviyo extension in Magento.
Enable the REST APIEnable the REST API
Start by enabling the REST API by creating a new REST Role and giving it full access, then assigning the role to one of your admin users.
- Click on System > Web Services > REST - Roles.
- Create a new Admin role. For the field Role Name enter a name, for example "Administrator".
- Click on the Role API Resources tab on the left. Set Resource Access to All and click Save Role.
- Next, navigate to System > Web Services > REST - Attributes.
- Select Admin from the list of user types.
- Set Resource Access to All and click Save.
- Next, navigate to System > Permissions > Users.
- Select an admin user from the list and click Edit user.
- Click the REST role tab on the left sidebar.
- Click the radio button to assign the new REST admin role to your user.
- Click Save User.
You've now enabled the REST API for your Magento store.
If you are unsure whether or not your REST API is configured properly, please review the steps outlined in our resource on troubleshooting coupons for Magento 1x.
Generate REST Credentials in Magento
To enable Klaviyo's Magento Coupons feature, first generate REST API credentials from your Magento store using the REST admin account you just made, and then paste these into your Klaviyo account.
- Log in as the REST admin user you created in the Enable the REST API section above
- Click on System > Configuration and then click on Klaviyo under the Customers section.
- Click Generate OAuth Tokens.
The Consumer Key, Consumer Secret, Authorization Token and the Authorization Secret will populate. You will copy/paste these values into your Klaviyo account in the next step.
Setup Magento Coupons in KlaviyoSetup Magento Coupons in Klaviyo
- From your Klaviyo account, navigate to your Magento integration.
- Click the Advanced Options arrow to expand the Coupon Settings.
- Paste in the REST credentials you created above.
Your Magento server must support HMAC-SHA1 signatures for OAuth authentication.
-
Click Update Magento Settings.
Klaviyo will validate your REST credentials and you will be able to start creating coupons with the Coupons tab of your account.
Create a Magento Coupon in KlaviyoCreate a Magento Coupon in Klaviyo
When you first navigate to the Coupons tab in your Klaviyo account after providing your REST credentials, you will see the message, "You haven't added any coupons yet."
When creating a Price Rule in Magento, note that the option to associate a new Price Rule with a specific coupon should be left set to Specific Coupon and you must have the Use Auto Generation checkbox selected.
- Click Add Coupon to create a new coupon.
- Fill in the following information: Coupon Name and the Magento Rule ID.
- Coupon Name: The name you specify can consist of only letters, numbers and underscores and can be up to 32 characters long
- Magento Rule ID: Create a rule in Magento first, and paste the ID of that rule here to associate it with this coupon
All created coupons will appear with the following overview details:
- Coupon Name: Name of the coupon
-
Active Timeframe: There are the following options:
- Active, No Expiration
- Date A - No Expiration
- Date A - Date B
- Active, Expires Date B
- Created Date: Date the coupon was created
- Last Updated Date: Date the coupon was last updated
Coupons can be edited and deleted from this tab via the dropdown on the right-hand side.
Use a Magento Coupon in a Flow Email
Once a coupon is created, you can insert it into a flow email using the following placeholder variable. You can only add one coupon code per email. You can display the same coupon code in multiple places, but you cannot use multiple codes.
{% coupon_code 'CouponName' %}
Replace CouponName with the name of your coupon. For example:
Use Unique Coupons in SMS Flow MessagesUse Unique Coupons in SMS Flow Messages
Unique coupons are also available for your SMS/MMS messages in flows. Generate the codes just like you would for email. Then, use the template tag below to add the coupon code to your SMS or MMS message:
{% coupon_code 'CouponName' %}
.
In the snippet, change CouponName to the name of the coupon you want and add it into the message (either flow or campaign).
Unlike in emails, you can only use one coupon code per SMS message. With email, you have access to hidden blocks to send different coupons based on where someone lives or what they’ve done. If you try to add multiple coupons to an SMS message, you will see an error message.
Troubleshoot Errors
Troubleshoot Errors
Error Message: “Unable to connect to the REST API with the specified REST credentials. Please check that these credentials are valid in your Magento admin."Error Message: “Unable to connect to the REST API with the specified REST credentials. Please check that these credentials are valid in your Magento admin."
If you are seeing this error message in Klaviyo, there are two likely root causes:
- Your Magento server is not set up to support HMAC-SHA1 signatures for OAuth authentication.
- You may have not enabled full role access for the REST API.
To resolve this issue, enable HMAC-SHA1 signatures for OAuth authentication on your Magento server. Then complete the following steps to update your REST permissions:
- Uncomment, or add, the rewrite rule in your .htaccess file. This is the line you’ll want to ensure is un-commented:
RewriteRule ^api/rest api.php?type=rest [QSA,L]
- Double check that your REST Role is setup correctly
We cover the instructions for this in our guide to setting up coupons for Magento in the section linked here. - Another common cause is that various Apache modules can strip “Authorization: Basic base64 (user:password)” header.
Check out this post for more information
Coupon codes populated into emails by Klaviyo are not unique -- all recipients appear to be receiving the same code.
When creating a Price Rule in Magento, the option to associate a new Price Rule with a specific coupon should be left set to Specific Coupon and you must have the “Use Auto Generation” checkbox selected.
Click on your Price Rule in Magento, and under General Information, scroll down to the line option "Coupon" and change this setting to "Specific Coupon". Next, check the box for auto generation here. This should fix the issue and allow us to generate a new unique coupon code for each email recipient.