Questions tagged [postman]

Postman is a client for sending and emulating requests over HTTP. It is most commonly used with API requests. Use for questions about the tool itself. Use with any relevant API tags if you are having issues with a specific use.

Started out as a simple testing tool, Postman is now an elegant, flexible tool used to build connected software via APIs - quickly, easily, and accurately. It is used by nearly five million developers and more than 100,000 companies worldwide.

Postman enables you to:

  • Create Collections of requests
  • Organize your work within different Workspaces
  • Split-stack development with Mock Servers
  • Use Tests & Scripts to add dynamic parameters
  • Automate tests with Collection Runner
  • Test performance & behavior with Monitors
  • Document & Publish Collections for collaboration
12313 questions
3
votes
1 answer

How do I integrate my Postman Integration Tests with TeamCity

I'm building a suite of integration tests in Postman to test some RESTful APIs. I'd like to run these tests when building the project in TeamCity. I'm looking at perhaps using Newman command line integration, but I not finding good examples of this.…
John Meyer
  • 2,296
  • 1
  • 31
  • 39
3
votes
1 answer

Azure functions request body as xml instead of json

I'm following this example when creating a javascript function in Azure functions and sending the request body using postman. In Azure functions it's possible to test the function using the request body which is in json format. Is it possible to…
3
votes
2 answers

C# Core 1.1 Web API Receive zip file

I created Web API endpoint to receive a zip file which looks like this [HttpPut()] [Consumes("application/zip")] public async Task ImportZip() { var zipFile = HttpContext.Request.Form.Files.FirstOrDefault(); …
Roman Borovets
  • 818
  • 12
  • 25
3
votes
0 answers

Postman with AWS signature: Missing x-amz-target Header

I am using postman interceptor to mimic a request happening before the user logs in the application, that request happens successfully on the browser but when using postman the server throws the error Missing x-amz-target Header When I compare the…
Naguib Ihab
  • 4,259
  • 7
  • 44
  • 80
3
votes
1 answer

FormDataParam Object passed as JSON string in post request does not get deserialized properly

I have a rest call which is taking some parameters as FormDataParam. When I am passing object EngineConfigMeta in json string to the rest call from postman, at the restcall level the object is not getting deserialized properly. Rest-call @Path(…
thedevd
  • 683
  • 11
  • 26
3
votes
1 answer

Passing token in header to Prophet 21 API

This is the first time I am working with Prophet 21 by Epicor. I am having a hard time figuring out how to pass the token in the HTTP request header after I authenticate with a user…
thestepafter
  • 598
  • 1
  • 4
  • 20
3
votes
1 answer

How to use pipe | in postman params

On postman, I want to hit a GET API, where I want to pass a param channelCategory : News|Movies, which is an array of strings. To separate those strings we are using pipe |. After hitting the API I am getting an empty response. So what I can do to…
Kunal Kaushal
  • 57
  • 1
  • 6
3
votes
1 answer

POST request file python-requests

This is the goal of post request I need in python: I got XML file, url and authentication-token. Depending on the xml file I get the xml response from the server back. req = requests.post(url='http://abc123.com/index.php/plan/', \ …
xdaniel
  • 113
  • 1
  • 11
3
votes
1 answer

Eve with Postman "must be of list type" error

I have an eve schema set up as such: schema = { "month": { "type": "datetime", "required": True, }, "test": { "type": "list" }, } And I'm using postman to make a post request: I'm at a bit of a loss here as to why I'm getting…
Luc Gendrot
  • 806
  • 9
  • 11
3
votes
1 answer

When using Quickbooks Online API Collections for Postman I'm getting an Authentication Error

I've gone through the steps shown here https://developer.intuit.com/docs/0100_quickbooks_online/0100_essentials/000300_your_first_request/first_request_with_postman#/Configuring_the_Postman_Authorization_header-1500 to use Quickbook's API Collection…
3
votes
1 answer

ADAL Authentication Token different of Postman Token Oauth2

I'm trying to connect my api to dynamics 365 crm. When I get the token with postman I can access, but when I get it with ADAL , the request returns 401 unauthorized. If I hardcode the token got with postman on my app it works fine. I saw that…
3
votes
0 answers

APIGEE returns 200 despite the target server returning 400

We are seeing a case where, on the target server, we are specifically setting the response status code to 400, we also see in the trace that APIGEE shows 400, but when checking in postman we see 200 as response status code. In above image, postman…
Anvesh Reddy
  • 171
  • 1
  • 5
3
votes
1 answer

could not get response from express.js server using postman

when i make post request from postman, the request data was shown server but server response i.e status code and json object was not send to postman, postman was just loading... and after some time it says could not get response from the…
malik
  • 41
  • 3
3
votes
1 answer

Use authentication token in follow-up requests in Postman

My app API requires authentication via an authentication token. In short, we send a request to a /authentication endpoint and it responds with a JSON object containing a token, like: {"token": "xxxxxxxxxxxxxxxxxxxxxx"} Every other API endpoint in…
Brett DeWoody
  • 59,771
  • 29
  • 135
  • 184
3
votes
3 answers

Getting different response for the same API and parameters in Jmeter/Postman

I have used login API to test in Jmeter. For that I have passed request: POST URL: .... POST data parameters: "email Address": "a@gmail.com","password": "ad332017" For the above request i am getting two different responses. On postman: I am…
anurag singh
  • 31
  • 1
  • 2