Slot Time from backend

how to add dynamic time slot from apis to node ?

Can you please elaborate the usecase please.
And also brief what you’re trying too achieve?

I need to add dynamic date and datewise time_slot (time slot also dynamic)
example:
“2023-02-07”: [
“9:00-10:00”,
“10:00-11:00”,
“11:00-12:00”,
“12:00-13:00”,
“13:00-14:00”,
“14:00-15:00”,
“15:00-16:00”,
“16:00-17:00”,
“17:00-18:00”,
“18:00-19:00”,
“19:00-20:00”,
“20:00-21:00”
],
“2023-02-08”: [
“9:00-10:00”,
“10:00-11:00”,
“11:00-12:00”,
“12:00-13:00”,
“13:00-14:00”,
“14:00-15:00”,
“15:00-16:00”,
“16:00-17:00”,
“17:00-18:00”,
“18:00-19:00”,
“19:00-20:00”,
“20:00-21:00”
],

Please follow the List Card in the Doc: Implement New Card in Yellow AI Cloud Platform | yellow.ai
You will get the API response in a function, format the function to a list card format.
Assuming you have to display for multiple days, you can parse the timeslots and form a list card and resolve in a function as an object.
If you need to display for 1 day, you can form Quick reply options with title and slots as set of buttons with it and resolve object in the function.
You will add a variable to catch the response and then add a prompt and place it in “fetch from” where you get to access the variables.