Adding this to a collection level script has no impact, and the values do not show up anywhere? Is this possible? Or is there any work around? Currently right now I have to return the data to the request script and then set the variable.
I do have an environment set. It just does not work. No error. No value change. Nothing. I tried pm.collectionVariables.set with the same result.
So apparently this issue only arises when the variable is set from a function created at the collection level. If the script sets the variables outside of a function it works.
Your original question is missing a lot of contextual detail that’s actually quite relevant here. You didn’t mention that you had created a global utility function and you were creating variables within that, by calling it in the request script.
Those work slightly differently and is an older method of reusing functions within scripts.
In order to get your function working with the pm.* functions, you need to add pm as an argument:
SetInfo: function(pm)
This also needs to be in the function at the script level: