Skip to main content

Landing On Product

Our solution provides multiple options to land on particular product after VTO launch. You can use SKU, EAN or CMS ID of the product to choose on which product to land.

Example

<script>
document.getElementById("neoButton").onclick = () => {
neo({
client_id: [CLIENT_ID],
configuration_id: [CONFIG_ID],
product_id: [PRODUCT_ID],
});
};
</script>

Landing on Look

If you wish to land on a product in a look, specify the look ID and the product ID

<script>
document.getElementById("neoButton").onclick = () => {
neo({
client_id: [CLIENT_ID],
configuration_id: [CONFIG_ID],
look_id: [LOOK_ID]
product_id: [PRODUCT_ID],
});
};
</script>