Framework Mode - Creating monitors
Folder Structure for Postman Monitors
postman-project/ ├── collections/ │ └── api-collection.json # Your API requests collection ├── environments/ │ ├── dev.postman_environment.json │ └── prod.postman_environment.json ├── monitors/ │ └── monitor-config.json # Monitor definitions and schedules ├── scripts/ │ ├── pre-request-scripts.js # Shared scripts for requests │ └── test-scripts.js # Shared test scripts └── README.md
This structure keeps your API collections, environments, and monitor configurations organized.