Postman
Environment variables
To set an environment variable after a request is done, at the Tests tab write:
var jsonData = JSON.parse(responseBody)
postman.setEnvironmentVariable('auth_token', jsonData.auth_token)
Tests
tests['Status code is 200'] = responseCode.code === 200
tests['Body has auth_token'] = responseBody.has('auth_token')