Questions tagged [postman-native-app]

Use this tag to refer to questions about the native desktop application version of postman on your local machine, i.e. not the web version of postman (https://postman.com).

44 questions
70
votes
6 answers

Postman - How to move collections between Workspaces?

I have multiple collections on the same Workspace on Postman. Unfortunately things are starting to get messy, to many Collections from different projects on the same place. How can I move some Collections/APIs to new Workspaces?
Lucas Fabre
  • 1,806
  • 2
  • 11
  • 25
18
votes
8 answers

Upload file failed Postman

I am using postman(v7.7.3) and I have got the following warning when I upload the file to send the body as a form-data. "This file isn't in your working directory. Teammates you share this request with won't be able to use this file. To make…
jin jin
  • 193
  • 1
  • 1
  • 7
6
votes
1 answer

HTTP-GET method returns a different result in browser versus POSTMAN desktop app?

I'm building an iOS app and I need to run an HTTP request and process the response body. The problem is that my request-url is not giving the same response body when I test it out in Postman / Alamofire (swift) versus Browser /…
5
votes
4 answers

Does Postman's Chrome Interceptor still work with the standalone version of Postman?

I've previously used the Postman Chrome's Extension along with the Postman Interceptor Extension to capture HTTP requests made from Chrome in Postman. However, now that Postman has migrated from a Chrome extension to a stand-alone application, I'm…
Jacob Horbulyk
  • 2,366
  • 5
  • 22
  • 34
4
votes
1 answer

Postman commercial use without using Postman Cloud sync for >3 person team

Postman (the company) indicates that commercial use is permitted providing you adhere to the licence according to their support statement below, however while the support statement appears on the surface to be clear it then goes on to refer to the…
David Ford
  • 695
  • 1
  • 6
  • 13
4
votes
1 answer

How to programmatically generate a collection from an openAPI / Swagger endpoint?

Generating a Postman collection from an openAPI / Swagger documentation JSON file is already possible using the Postman API Client (a desktop app). However, for purposes of programmatically modifying an existing collection using the NodeJs-based…
Michahell
  • 4,905
  • 5
  • 29
  • 45
3
votes
0 answers

API calls using postman causing issues

Can someone please help me fixing the Postman Desktop agent issues. When I try to send a request using postman web, where the send button disabled and saying that to install Desktop Agent. I have already installed Desktop Agent and it's running.…
krkc
  • 81
  • 8
2
votes
0 answers

Postman Mock Server matching algorithm logic for request body param form-data

Is there any option to send mock results depends on form data body value in postman? I am sending some value in the body as form data and I have two example result and now the mock API return only one example I need to get the result based on the…
2
votes
2 answers

Postman Get Current Collection Variable Value

I need to get current exact collection variable value. In pre-request script of a postman request I'm setting 2 collection variables as follows pm.collectionVariables.set("firstCollectionVariable",…
2
votes
1 answer

Azure B2C login - Issuer URL fails to resolve correctly for web access

I am using Azure B2C to authenticate a native Xamarin forms app. It all works perfectly using the correct b2clogin.com domain to return an access token When I try and return a token using Postman, it does not work if I use b2clogin - only…
2
votes
2 answers

How to Post map data inside ArrayList as form-data by postman

i am Posting a Map data as ArrayList. So i have tried it by Raw body. but i need to post it as Form-Data. I tried it by many ways but i didn't get result. if any one knows the solution, how to do it. please give me solution. and here is my code…
user8867917
2
votes
2 answers

How can i export a request or collection into excel directly from Postman?

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.
1
vote
1 answer

Multipart/Realted API request in POSTMAN

I need to know the setup process of multipart/related file upload API request in POSTMAN. I have the following details API url :- https://apiq-jmqny-ste.azpre-api.net json body :- { "token" : "aqop094567", "flow" : "work" } pdf file :-…
1
vote
0 answers

How can I store a function in a Postman variable?

I've run across several use cases where I want to store a function in a Postman collection variable and reference it from an endpoint. Here's one example: // at collection level const parameterizedSchema = (codes) => ({ type: 'object', …
Sasgorilla
  • 2,403
  • 2
  • 29
  • 56
1
vote
1 answer

How can I print the assertion with a value even if it get passed in Postman Api Testing

As a user, while executing the test cases created for the API Request, I'm expecting that it must show the value of the assertion even if the test cases pass. For Example: pm.test("User ID Should Exist", ()=>{ value =…
1
2 3