Created
May 1, 2018 07:46
-
-
Save ratpik/239400a574b2585d3ca198b833dadd49 to your computer and use it in GitHub Desktop.
User in Postman App
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
pm.models.user.find({}, (err, users) => { | |
users.forEach((user) => { | |
console.log(`User ID: ${user.id} \n Access Token: ${user.auth.access_token} \n Email: ${user.email}`); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment