Reputation: 131
I’m wondering if someone can help us out here as we are going round in circles. In short we are trying to;
However our set variable task using (@activity('Lookup1').output) returns the value but its wrapped in lots of JSON (see attached). In the attached we are only interested in the TokenGUID value, not the rest of the JSON.
So can someone please point us in the direction of how we would set a variable to be a string value.
Thanks,
Upvotes: 0
Views: 5536
Reputation: 8660
You can use this expression to get TokenGUID:
@activity('Lookup1').output.firstRow.TokenGUID
My test:
Output of Set variable activity
Upvotes: 2