Hello! So when setting up my HTTP block in the AI Loop configuration, why is HTTP request sending "dummy data"?
After my first in input (responding to hello block) here is the response I get from HTTP block :
{
"statusCode": 200,
"response": {
"kind": "calendar#freeBusy",
"timeMin": "2023-10-15T14:00:00.000Z",
"timeMax": "2023-10-15T15:00:00.000Z",
"calendars": {
"primary": {
"busy": []
}
}
},
"request": {
"url": "
https://www.googleapis.com/calendar/v3/freeBusy",
"method": "POST",
"headers": {
"Authorization": "Bearer ya29XXXXXXX",
"Content-Type": "application/json"
},
"timeout": 10000,
"json": {
"timeMin": "2023-10-15T14:00:00.000Z",
"timeMax": "2023-10-15T15:00:00.000Z",
"items": [
{
"id": "primary"
}
]
}
}
}
I have just entered "hello", why do I get this response and how do I only make the HTTP block send MY timeMin and timeMax values and not the "dummy" time? Thank you!!