Framework Mode - Importing and exporting collections
Folder Structure of a Postman Test Project
postman-project/ ├── collections/ │ ├── user-authentication.postman_collection.json │ ├── product-api.postman_collection.json │ └── order-api.postman_collection.json ├── environments/ │ ├── dev.postman_environment.json │ ├── staging.postman_environment.json │ └── production.postman_environment.json ├── scripts/ │ ├── pre-request-scripts.js │ └── test-scripts.js ├── exports/ │ └── exported-collections/ │ ├── user-authentication-export.json │ └── product-api-export.json └── README.md