{"id":21480488,"url":"https://github.com/codewithmmak/api-automation-postman-newman","last_synced_at":"2026-04-16T00:32:15.757Z","repository":{"id":40359836,"uuid":"352177811","full_name":"codewithmmak/api-automation-postman-newman","owner":"codewithmmak","description":"Automating OData based RESTful API using POSTMAN","archived":false,"fork":false,"pushed_at":"2023-09-15T17:46:34.000Z","size":438,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-23T17:59:38.127Z","etag":null,"topics":["api-automation","api-testing","api-testing-framework","html-report","newman","newman-reporter","odatav4","postman","postman-collection","postman-test","rest","restful-api"],"latest_commit_sha":null,"homepage":"","language":"Handlebars","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codewithmmak.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-27T21:09:37.000Z","updated_at":"2023-02-20T18:56:47.000Z","dependencies_parsed_at":"2025-01-23T18:43:00.056Z","dependency_job_id":null,"html_url":"https://github.com/codewithmmak/api-automation-postman-newman","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codewithmmak/api-automation-postman-newman","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmmak%2Fapi-automation-postman-newman","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmmak%2Fapi-automation-postman-newman/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmmak%2Fapi-automation-postman-newman/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmmak%2Fapi-automation-postman-newman/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codewithmmak","download_url":"https://codeload.github.com/codewithmmak/api-automation-postman-newman/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithmmak%2Fapi-automation-postman-newman/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31866311,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-automation","api-testing","api-testing-framework","html-report","newman","newman-reporter","odatav4","postman","postman-collection","postman-test","rest","restful-api"],"created_at":"2024-11-23T12:15:27.036Z","updated_at":"2026-04-16T00:32:15.559Z","avatar_url":"https://github.com/codewithmmak.png","language":"Handlebars","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Automating OData based RESTful API using POSTMAN\r\n\r\n## How to run Postman Collection using Postman tool?\r\n1. Open Runner\r\n2. Drag and Drop your collection\r\n3. Select the tests\r\n4. Hit Run button\r\n![Automating OData based RESTful API using POSTMAN](./img/postman-result.png?raw=true \"Automating OData based RESTful API using POSTMAN Test Results\")\r\n\r\n## How to run Postman Collection using Newman CLI tool?\r\n1. Open Terminal/CMD\r\n2. Install newman `npm install -g newman`\r\n3. Go to root path of project\r\n4. Enter command\r\n`newman run OData_In_6_Steps.postman_collection.json`\r\n5. CLI will show below results\r\n\r\n![Automating OData based RESTful API using POSTMAN](./img/cli-result-01.png?raw=true \"Automating OData based RESTful API using POSTMAN Test Results\")\r\n\r\n![Automating OData based RESTful API using POSTMAN](./img/cli-result-02.png?raw=true \"Automating OData based RESTful API using POSTMAN Test Results\")\r\n\r\n## How to generate HTML report using npm newman-reporter-html with Newman?\r\n1. Open Terminal/CMD\r\n2. Install reporters `npm install -g newman-reporter-html`\r\n3. Go to root path of project\r\n4. Enter command\r\n`newman run OData_In_6_Steps.postman_collection.json -r html`\r\n\r\n## How to generate HTML report using npm newman-reporter-htmlextra with Newman?\r\n1. Open Terminal/CMD\r\n2. Install reporters `npm install -g newman-reporter-htmlextra`\r\n3. Go to root path of project\r\n4. Enter command\r\n`newman run OData_In_6_Steps.postman_collection.json -r htmlextra --reporter-htmlextra-export .\\testResults\\TestResult.html`\r\n\r\n![Automating OData based RESTful API using POSTMAN](./img/htmlextra-result.png?raw=true \"Automating OData based RESTful API using POSTMAN Test Results\")\r\n\r\n## How to generate CSV report using npm newman-reporter-csv with Newman?\r\n1. Open Terminal/CMD\r\n2. Install reporters `npm install -g newman-reporter-csv`\r\n3. Go to root path of project\r\n4. Enter command\r\n`newman run OData_In_6_Steps.postman_collection.json -r csv --reporter-csv-export .\\testResults\\TestResult.csv`\r\n\r\n![Automating OData based RESTful API using POSTMAN](./img/csv-result.png?raw=true \"Automating OData based RESTful API using POSTMAN Test Results\")\r\n\r\n## Troubleshooting\r\nIssue #1: When you run Postman collection using newman you may see error: \r\n\r\nFile C:\\Users\\admin\\AppData\\Roaming\\npm\\newman.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.\r\n\r\nSolution: Follow step 1 to 3 given on `https://www.c-sharpcorner.com/article/how-to-fix-ps1-can-not-be-loaded-because-running-scripts-is-disabled-on-this-sys/`\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithmmak%2Fapi-automation-postman-newman","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodewithmmak%2Fapi-automation-postman-newman","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithmmak%2Fapi-automation-postman-newman/lists"}