How to setup ShareASale tracking code


ShareASale is a third-party affiliate tracking program.

When setting up your ShareASale account, you will be given a specific tracking code.  To get your specific tracking code, you can go to: http://www.shareasale.com/m-gettrackingcode.cfm.

This tracking code is located at the bottom of that page:

where XXXXX is your ShareASale merchant ID.

To integrate this code with Spark Pay, go to Settings > Orders > General in the Admin Console.

Here you will see a section named  Place Order Script. This is where any code that's supposed to go on your "thank you page" to track successful orders will be placed.

Copy and paste the code from ShareASale into the Place Order Script field. You will notice merge codes replacing the placeholders from ShareASale, such as AMOUNTOFSALE.

You will need to do this for each placeholder field in the ShareASale script. This way Spark Pay can fill in the information from your orders automatically.

Here is a simple script with merge codes, where all you need to send is the order amount and number:

<img src="https://shareasale.com/sale.cfm?amount=##ORDERSUBTOTAL##&tracking=##ORDERID##&transtype=sale&merchantID=XXXXX width="1" height="1">

Where XXXXX is your merchant id.  This scenario covers most of the basic uses of the ShareASale affiliate tracking program.

A more advanced scenario where you have product specific commissions to track would look like this:

<img src="https://shareasale.com/sale.cfm?amount=##ORDERSUBTOTAL##&tracking=##ORDERID##&transtype=sale&merchantID=XXXXX&skulist=##ORDERITEMLISTURLENCODED##&pricelist=##ORDERBASEPRICELISTURLENCODED##&quantitylist=##ORDERQUANTITYLISTURLENCODED##" width="1" height="1">

In this script, we are sending the item numbers as a comma separated field in the skulist parameter. The price lists as a comma separated field in the pricelist parameter. Finally, the quantity list as a comma separated field in the quantitylist parameter.  This will tell ShareASale the purchased products on the order, as well as the prices and quantities of each.  To use this type of script, you will need to upload a product list to ShareASale.

Both of the above scripts covered the Per-Sale affiliate type in which affliates are rewarded for actual generated sales.  Another approach is the Lead approach, in which affiliates can earn commission from generating leads. 

A script for that scenario might look like this:

<img src="https://shareasale.com/sale.cfm?amount=0.00&tracking=TRACKINGNUMBER&transtype=lead&merchantID=XXXXX" width="1" height="1">

Note: In Lead based scripts, ShareASale still requires the amount parameter even though it is always set to 0 in this case.

How helpful was this article?
Number of questions: 0