Steps to Automate Login Token in Postman
TYPE 1
TYPE 2
1. Create a Collection and Add a Login Request
Open Postman and create a new collection.
Inside the collection, create a new request (e.g.,
POST /login
).Add the required login credentials (e.g., email and password) in the Body (raw JSON format).
2. Write a Pre-request Script to Automate Token Retrieval
Go to the Pre-request Script tab of your collection.
Add the following script to send a login request and store the token.
3. Set Authorization Token Dynamically in Requests
Now that the token is stored, use it in your API requests by adding it in the Headers or Authorization tab.
Using Headers
Go to any request inside the collection and add a new header:
Using Tests Script (Alternative Method)
Instead of setting the token manually, you can use a Test script to ensure it’s updated dynamically:
4. Automate Headers for All Requests
Instead of manually adding headers for each request, automate this by:
Navigating to Collection -> Authorization.
Selecting Bearer Token and using
{{authToken}}
.This applies the token to all requests inside the collection.