Postman: Can i save JSON objects to environment variable so as to chain it for another request?

You should use JSON.stringify() before setting it to environment variable.

Then after you call it in next request, use JSON.parse() to recreate the object.

Hope it helps.

Leave a Comment