Track the generated revenue of your campaigns or referrals server side.
Vendure Campaign Tracker plugin
Official documentation here
Vendure plugin to track revenue per campaign server side, so that you can compare different campaigns from different sources. To track campaigns:
- Create a campaign via the Vendure admin UI
- Pass the created campaign code in the url, e.g.
my-website.com?ref=summer-sale-ad
. This URL is then included in your ads or email campaigns. - Make your storefront send the campaign code to Vendure with the
addCampaign
mutation
Getting started
Add the plugin to your vendure-config.ts
import { CampaignTrackerPlugin, LastInteractionAttribution } from '@pinelab/vendure-plugin-campaign-tracker';
...
plugins: [
CampaignTrackerPlugin.init({
// Pick an attribution model. Choose from `LastInteractionAttribution`, `FirstInteractionAttribution`, `LinearAttribution`
// Or, implement your own by implementing the AttributionModel interface.
// See JsDoc of each model for more information
attributionModel: new LastInteractionAttribution()
}),
AdminUiPlugin.init({
port: 3002,
route: 'admin',
app: compileUiExtensions({
outputPath: path.join(__dirname, '__admin-ui'),
extensions: [
CampaignTrackerPlugin.ui,
... // your other plugin UI extensions
],
}),
}),
... // your other plugins
]
- Run a database migration.
- Rebuild the admin UI
- Start Vendure, and navigate to ‘Campaign’ (below Promotions)
- Create a campaign, e.g.
my-first-campaign
. - Make sure that every page on your storefront includes the following code:
const url = new URL(window.location.href);
const params = new URLSearchParams(url.search);
const ref = params.get('ref');
const activeOrder = await yourGraphqlClient.query(
gql`
mutation addCampaignToOrder($campaignCode: String!) {
addCampaignToOrder(campaignCode: $campaignCode) {
id
code
total
}
}
`,
{ campaignCode: ref }
);
This will add any visits to your website with ?ref=my-first-campaign
campaign to the order. This mutation will create a new active order if none exists yet.
If my-first-campaign
doesn’t exists as campaign in Vendure, the call is ignored and no active order is returned (or created).
Create your first commerce experience with Vendure in less than 2 minutes
Vendure is a registered trademark. Our trademark policy ensures that our brand and products are protected. Feel free to reach out if you have any questions about our trademarks.
Documentation
Newsletter
Get the latest product news and announcements delivered directly to your inbox.