Currently, it is possible to set and get variables from the global
and environment
scope, as well as the generic variable
in a pre-request script. However, the documentation is not clear if it is possible to programmaticaly set collection
scoped variables.
For example
pm.environment.set("timestamp", timestamp); //acceptable
pm.global.set("signature", hash); //acceptable
pm.variable.set("signature", hash); //acceptable
pm.collection.set("signature", hash); //not possible?
Is this possible?