Webhook response not returning JSON from Make.com to Landbot

I’m trying to retrieve the final calculated cleaning price from Google Sheets based on a unique quote_id, which is matched in column AE. Each sheet calculates the price for a specific service (e.g., “ON DEMAND EXPRESS CLEAN”), and the price is stored in column AD. The goal is to pull the price from the correct row and return it to Landbot via webhook so I can eventually build logic for other service paths.


:small_blue_diamond: Steps taken so far

  • I already have a separate Make scenario that successfully collects all customer data and inserts it into the Customer Data sheet, which later adds the data to each service sheet to calculate the price.
  • In Landbot, I generate a quote_id and send it via a Webhook block to a second Make scenario.
  • This scenario includes:
    1. Custom Webhook (receives the quote_id),
    2. Router (to support other services later),
    3. Search Rows in “ON DEMAND EXPRESS CLEAN” → finds the row by QUOTE ID (AE) and reads the PRICE (AD),
    4. Webhook Response returns:

json

CopyEdit

{ "price": "{{2.PRICE}}" }
  • In Landbot, I show this value with:
    "Your price is $@price"

:name_badge: However, the final Landbot message still shows: “No JSON response”, even though the customer row is created and quote_id matches correctly in Sheets.