I’m setting up a scenario with two HTTP GET requests and a router with two branches, however I can’t get the branch filters right. Essentially I want to compare a list from request 1 with items from request 2: if List X contains item Y, update. If not, create.
Whichever route I take I end up with an error somewhere down the line. Here’s my scenario:
From the first request, I’m using an ItemID and a programID. From the second I need the program IDs to compare with the ones from the first request, to decide whether to update or create. In case of update, I need to target the right item with ItemID.
I can create an array from ProgramID but it prevents me from using the ItemID later on. I tried several other things but none worked. I’m assuming my lack of knowledge is the reason I’m stuck and not a lack of options.
Anyone up for some advice? Or do I need to be more specific?