Postman Snippets

Mark Poulsen | Jul 30, 2023 min read

Lodash

Postman ships with Lodash

// is equal https://lodash.com/docs/#isEqual
_.isEqual(value, other);

// omit https://lodash.com/docs/#omit
_.omit(object, [paths]); // [paths] can be replaced by a callback method

Snippets

Set Environment Variable

pm.environment.set("foo-response", pm.response.json());

Test

Assert Response Status

pm.test("Successful response", function () {
  pm.response.to.have.status(200);
});