How to export specific request to file using postman?

后端 未结 6 1951
醉梦人生
醉梦人生 2020-12-24 11:15

I want to export one specific request from postman extension (chromium) and send it to another developer so that they can import it. How I can do this?

相关标签:
6条回答
  • 2020-12-24 11:41

    To do that you need to leverage the "Collections" feature of Postman. This link could help you: https://learning.getpostman.com/docs/postman/collections/creating_collections/

    Here is the way to do it:

    • Create a collection (within tab "Collections")
    • Execute your request
    • Add the request to a collection
    • Share your collection as a file
    0 讨论(0)
  • 2020-12-24 11:48

    The workaround is to export the collection as explained in other answers or references. This will export all requests in that collection to JSON file.

    Then edit the JSON file to remove the requests you do not want using any editor; this is very simple.

    Look for "item" collection in file. This contains all your requests; one in each item. Remove the items you do not want to keep.

    If you import this edited file in Postman where original collection already exists, Postman will ask you if you want to replace it or create a copy. If you want to avoid this, you may consider changing "_postman_id" and "name" under "info". If original collection will not exist while importing edited collection, then this change is not needed.

    0 讨论(0)
  • 2020-12-24 11:54

    You can export collection by clicking on arrow button

    and then click on download collection button

    0 讨论(0)
  • 2020-12-24 12:01

    If you want to export it as a file just do Any Collection (...) -> Export. There you should be able to choose collection version format and it will be exported in JSN file.

    0 讨论(0)
  • 2020-12-24 12:05
    1. Click on the "Code" button upright of the request page.
    2. From the opened window select cURL.
    3. Copy and share the generated code.

    You can use this curl request to import it into Postman.

    0 讨论(0)
  • 2020-12-24 12:05

    Thanks to the previous answers you knew how to save/download a request.

    For people who are asking for a way to save/export the response you can use the arrow beside the "Send" button, click "Send and Download" to get the response in .json

    0 讨论(0)
提交回复
热议问题