the response body as a long numeric guid, when i try to save it to environment variable for re-use… it converts it to Scientific Notation
console.log("1: " + JSON.stringify(pm.response.json().ShaSessionGuid));
console.log("2: " + JSON.stringify(pm.response.json()));
let response = pm.response.json();
savedData = JSON.stringify(response);
pm.globals.set("savedData", savedData);
console.log("3: " + pm.environment.get("savedData"));