Snippets

Postman Snippets

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", …

Splunk Snippets

Search Commands Regular Expression To match a phrase with a regular expression, begin with rex followed by the expression. The example below matches all non-whitespace, and assigns the matched phrase to variableForMatch | rex " (?<variableForMatch>[^\s]+)" Concat Fields The period is …