- Import the Postman Echo template.
- Run the collection with the collection runner, and observe the results.
- Filter on failed tests, and drill down into the request and response details.
- In order to use Newman, you will need to install Node.js, a package manager like npm, and Newman using a command like
npm install -g newman
. - Export the Postman Echo collection to a local directory, run the collection, and observe the CLI output.
newman run collection.json
- Import Postman collection from the API Network.
- Retrieve your Postman API key, and store it as an environment variable called
postman_api_key
. GET
all collections, find the Postman Echo collection in the response body, and copy the collectionuid
to your clipboard.GET
a single collection using theuid
from the previous step.- In order to use the URL with Newman, add a query string parameter
apikey
with the value of your Postman API Key. - Run the collection using Newman and this entire URL, and discuss how this can be used with your Continuous Integration / Continuous Delivery (CI/CD) pipeline.
newman run https://api.getpostman.com/collections/{{collection_uid}}?apikey={{postman_api_key}}
- Schedule a monitor to run on the Postman servers, select the frequency, regions, and other configuration options.
- In the web dashboard, review the monitor run results.
- Write a description in markdown for a collection, folder, request, and parameter.
- Create a team workspace, and share an existing collection to the new workspace.
- Publish the collection publicly, customize theme, and add as a template.
- Toggle over to the Browse view in Postman.
- For Postman Team users, update the role of a user for a collection in a team workspace.
- Fork and merge a collection
- Add a new version to the API specification (or to the collection).
- Review the changelog for the collection. Review the activity feed for a workspace, user, or team (if team exists).
- Browse available integrations.
- Running a collection with Newman for CI/CD, from CLI, or as a library
- Running a collection with monitors from Postman servers
- Writing and sharing private and public documentation
- Using Postman for lots and lots of collaboration
- Automation with Newman and Monitors
- Documentation
- Collaboration
- Postman Echo template
- Postman API
Continue to Part 4: Activate Thrusters