Missing slots

Good morning, I’m creating a scenario that automates checking for available time slots in the calendar after a client inquiry. The HTTP module searches the calendar for free slots and displays them to me, as shown below. Unfortunately, when I try to map these slots in the following modules, I can only see the last available slot from each day. Why is that? How can I fix it? Thank you in advance for your help.

Hey Robert,

that’s because you are looking at an array of items. In such cases Make only shows the first item from the array.

Do you need to map all the items in the following module or only some of them?

Hi, thank you for your reply. I need to map all the items so that the client can choose the most convenient date and time.

OK, can you show the module you are mapping them in? Is it in a text message or an email?

This is a message to be sent to the chatbot, which responds to clients. I’m trying to map the dates in the area marked with a red frame. I’ve tried breaking them up using Parse JSON and Iterator, but it didn’t help much—maybe I was doing it wrong.

Ok so just free text. You can use an iterator module to go through the array of dates, then a Text Aggregator module to build you the text string in the format that you want.

Thank you for help :slight_smile: