drpx
Member
- Your Task History ID
- IjU3NjYwNTZmMDYzNTA0MzI1MjY1NTUzMzUxMzIi_pc
I'm setting up a workflow scheduled to run everyday at 9AM
It fetches an API that returns who's checking out of a hotel at noon, and returns a list with some data such as name, phone, email
The amount of people varies everyday. I need to send everyone a message before they leave
So, lets say my API returned today:
{user1 name, user1 phone, user1 email},
{user2 name, user2 phone, user2 email},
{user3 name, user3 phone, user3 email}
I want to get every single person's number in that array to send them a message.
I tried to use pabbly iterator but it doesn't really iterate thru the array, it's catching just the first person's data.
I need something such as for loop, to iterate over the whole array
Any tips on how to approach this subject? Thanks
It fetches an API that returns who's checking out of a hotel at noon, and returns a list with some data such as name, phone, email
The amount of people varies everyday. I need to send everyone a message before they leave
So, lets say my API returned today:
{user1 name, user1 phone, user1 email},
{user2 name, user2 phone, user2 email},
{user3 name, user3 phone, user3 email}
I want to get every single person's number in that array to send them a message.
I tried to use pabbly iterator but it doesn't really iterate thru the array, it's catching just the first person's data.
I need something such as for loop, to iterate over the whole array
Any tips on how to approach this subject? Thanks