This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Store path variables in a local variable, <collection variable: $pathVariablePrefix><path variable name>. | |
*/ | |
// Get all path variables for use in the request body. | |
let pathVariables = pm.request.url.variables.all(); | |
if (pathVariables.length > 0) { | |
let pathVariablePrefix = pm.collectionVariables.get('$pathVariablePrefix'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontSize": 14, | |
"breadcrumbs.enabled": true, | |
"css.validate": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.tabSize": 2, | |
"editor.autoIndent": "full", | |
"editor.insertSpaces": true, |