I want request present in collection into excel. How can I export a collection to excel using Postman? Since I am unable to find any solution.
Asked
Active
Viewed 1.0k times
2
-
What do you exactly want? Do you want to make an excel table from your test results, or an excel table of your tests/assertions? – DieGraueEminenz May 16 '19 at 05:48
-
@ DieGraueEminenz So suppose I have set of request in postman within a collection. and I want all those collection to be exported into excel and want them as test cases – Arka May 16 '19 at 05:55
-
Thanks for your comment ..found a way around where I can save collection JSON into Excel . – Arka May 22 '19 at 12:42
2 Answers
4
There is this NPM CLI called PTOE, Follow below steps to generate Excel file from the collection.json.
- Install PTOE globally using command
npm i -g ptoe
- Export your collection from postman in latest format (v2.1 as of now)
- Type
ptoe --file <collection_name.json>
- Excel file will be generated in the same file
Here is the link to Npm Package.

Nikhil Bhandarkar
- 699
- 7
- 17
0
Edit: as pointed out in the responses below another person provided a solution a year after I answered this. Have a look there instead.
Original response: I think the short answer is no. You can export to json files which don't really fit well with Excel. It sounds like you're after something and are trying to use Excel to solve it. Why not ask for help with your underlying goal instead?

Josh
- 4,009
- 2
- 31
- 46
-
Thanks for your comment ..found a way around where I can save collection JSON into Excel . – Arka May 22 '19 at 12:42
-
@Arka Would you please post you answer in this thread? Maybe someone else is running in the same situation? – DieGraueEminenz May 22 '19 at 13:57
-
3HI Josh , the easy around way I find is like ,1st export the collection by clicking on collection -Export -Collection v2.1 and hit Export. then save the same in you compute .Then navigate to convertcsv.com/json-to-csv.html and then upload the downloaded JSON and hit on the way you want to download by clicking on either 'Cinvert JSON to CSV ' or ' JSON to excel ' and there you are ...Thank you !! – Arka May 22 '19 at 16:33
-
-
it is possible indeed. check the other answer, it is accurate. – Yala Yala Herzlin Nov 24 '21 at 17:58