AbiCart Plugin
This is our official AbiCart plugin to fetch data from your store. This plugin takes care of all setup needed to get data flowing from your store to Engage. This includes batch data ingestion as well as advanced javascript tracking. Continue reading to get started with the AbiCart plugin, or read all about how Engage runs on AbiCart here.
- 1.Log into your Engage account
- 2.Scroll down to Integrations and select the AbiCart plugin
- 3.
- 4.
- 5.
- 1.Log into your store admin area
- 2.Navigate to Settings -> Apps -> API keys and click
Edit
- 3.Click
Add
and setup your API key - 4.Make sure to check the Activate checkbox before saving
- 1.Log into your store admin area
- 2.Find your Shop ID in the top left corner
The API Endpoint is simply your store URL with the below add-on appended:
/backend/jsonrpc/v1/
The following events are defined out-of-the-box for you when you use the AbiCart plugin. These cover all the standard functionality required.
Events |
Added to Cart |
Checkout Started |
Order Completed |
Page Viewed |
Product Seen |
Product Viewed |
Removed From Cart |
User |
You may track additional or custom events in your store by adding the corresponding
zlt.track();
javascript function on your website. /* Example of a custom event */
zlt.track('My Custom Event', {
param_one: 'Some value',
param_two: 123
});
Last modified 7mo ago