Framework Mode - Generating documentation from collections
Folder Structure of a Postman Test Project
postman-project/ ├── collections/ │ └── api-collection.json (Postman collection file with requests and tests) ├── environments/ │ ├── dev.postman_environment.json │ └── prod.postman_environment.json ├── documentation/ │ └── generated-docs.md (Exported or generated documentation files) ├── scripts/ │ ├── pre-request-scripts.js (Reusable scripts for requests) │ └── test-scripts.js (Reusable test scripts) ├── reports/ │ └── test-report.html (Test run reports) └── postman.config.json (Optional config for Newman or CI integration)