Last active
May 15, 2020 15:35
-
-
Save mesaglio/8ea74e7c2cf9c476c29b068957aaba8c to your computer and use it in GitHub Desktop.
pre-request
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
const echoPostRequest = { | |
url: pm.environment.get('baseUrl') + '/login', | |
method: 'POST', | |
header: 'Content-Type:application/json', | |
body: { | |
mode: 'application/json', | |
raw: JSON.stringify( | |
{ | |
"mail": "[email protected]", | |
"password": "HXtaSUzh" | |
}) | |
} | |
}; | |
pm.sendRequest(echoPostRequest, function (err, res) { | |
var responseJson = res.json(); | |
pm.environment.set('token', responseJson.token) | |
}); | |
// to update variables, use tests | |
var data = pm.response.headers.get("x-access-token"); | |
pm.environment.set('token', data); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment