Skip to content

Unable to pass data through to Webhook in Make.com #216

@ridabourji1988

Description

@ridabourji1988

This is the setup i have for my chatbot:
image

This is the code to connect to the chain:

import requests

API_URL = "https://flowise-chat-doc-********************************************"

def query(payload):
response = requests.post(API_URL, json=payload)
return response.json()

output = query({
"question": "Hey, how are you?",
})

========================

This is the inputConfig:

import requests

API_URL = "https://flowise-chat-doc-******************************************************"

def query(payload):
response = requests.post(API_URL, json=payload)
return response.json()

output = query({
"question": "Hey, how are you?",
"overrideConfig": {
"temperature": 1,
"maxTokens": 1,
"topP": 1,
"frequencyPenalty": 1,
}
})

===========================

Now this is the webhook setup in Make.com :

image image

=============================

Data Structure:

image image image image

==============================

After making a request from Bubble:

image

No data pass through:

image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions