Partners

Online Retailers

It's simple to add upsell advertisements to your existing cart checkout flow.

Contact us to get started.


Just include the Agora Upsell logic within your site and make sure it's loaded within the retail checkout context.


  <script async src="https://upsell.agoralabs.ai/upsell.js"></script>
	

After end-user payment, simply invoke the Agora Upsell offer engine to show partner advertisements.


  ...
  upsell.init({ shop: 'veridian-dynamics.myshopify.com' });
  upsell.showOffers({ order_info: { id: '56789' }, 
    customer_info: { first_name: 'John', last_name: 'Smith', email: 'John.Smith@agoralabs.ai' } }).then(() => 
    { alert('ok'); }).catch(e => { alert('fail'); });
  ...
    

Using Shopify? Contact us to inquire further.





Brand Partners

Easily add your products and services to our advertising platform.

Contact us to get started.


Your landing page and all page navigation up until and including end-user conversion activity must include the following code snippet to function correctly.


  <script async src="https://upsell.agoralabs.ai/altag/altag.js"></script>
  <script>
      window.aldl = window.aldl || [];
      function altag() { window.aldl.push(arguments); }
  </script>
	

At the point of end-user conversion, your page must invoke the altag function.


  ...
  altag('event', 'conversion');
  ...