top of page

You'll be green with envy if you don't try our green machine smoothie. And we all know it's healthy for you because, well... it's green!

 

Contains green apple, kiwi fruit, spinach, passionfruit, chia seeds.

 

Blend with liquid of choice (i.e. milk, juice, non-dairy milk, coconut water, yoghurt etc).

 

Comes in a pack of 4 ($7.50 per smoothie)

Green Machine Smoothie (4 pack)

SKU: LLL2
$30.00Price
Price Options
One-time purchase
$30.00
Green Machine
Subscribe
$30.00every week until canceled
    bottom of page
    import { ok, serverError } from 'wix-http-functions'; export function post_webhook(request) { // Extract data from the request body return request.body.text() .then(body => { const data = JSON.parse(body); // Parse JSON data console.log('Received webhook data:', data); // Optionally send this data to Zapier return fetch('https://hooks.zapier.com/hooks/catch/21241255/2zk3jow/', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data) }) .then(() => ok({ body: 'Webhook received and forwarded to Zapier' })) .catch(error => serverError({ body: 'Error sending data to Zapier' })); }) .catch(error => serverError({ body: 'Error parsing webhook data' })); }