Framework Mode - Local variables
Folder Structure of a Postman Test Project
PostmanProject/ ├── collections/ │ ├── UserAPI.postman_collection.json │ └── ProductAPI.postman_collection.json ├── environments/ │ ├── Development.postman_environment.json │ └── Production.postman_environment.json ├── scripts/ │ ├── pre-request-scripts/ │ │ └── auth-setup.js │ └── test-scripts/ │ └── response-validation.js └── README.md
This structure organizes collections, environments, and reusable scripts.