Custom actions

Request custom actions for tracking beyond built-in actions.

If you need to track actions beyond those built into our system (e.g., view, click, add-to-cart, remove-from-cart, purchase). To discuss the setup of a custom action, contact your Customer Support Manager.

Once your custom action is configured, you can send activity data for that action.

Below is an example of a custom action for add-to-wishlist:

{
    "action":"add-to-wishlist",
    "target": {
        "product": "product-id"
    },
    "sourceId":"source-id",
    "metadata": {
        "quantity": 1
    }
}

Last updated