What’s up y’all,
I have an API call that takes a URL parameter and returns a corresponding email address to that URL.
I also have 2 lists.
URL list.
Email Address list.
My program has a workflow that takes a URL from the URL list and adds the corresponding email address to the other list using my API.
I designed it to make these lists synchronized. URL list item #1 and email address list item #1 should be related to each other.
The problem is that the email addresses are getting added backward.
Say my URL list was:
Item #1: URL1
Item #2 URL2
My email address list would be:
Item #1 Email Address from URL 2
Item #2 Email Address from URL 1
They are getting flipped.
I use the “add” operator to add items to my email list.
Any thoughts on what this problem could be?
Thank you in advance
-Zach