top of page

Book Online

bottom of page
amazon_connect(‘customerDisplayName’, function(callback) { const displayName = ‘Jane Doe’; callback(displayName); }); amazon_connect('authenticate', function(callback) { window.fetch('/token').then(res => { res.json().then(data => { callback(data.data); }); }); });