Postman Resolving “Invalid CORS request” for a POST Request

I’ve just started using Postman to test an API I am integrating to. I have the following error that keeps showing up Invalid CORS request Note the following: The API uses Bearer token authentication(OAuth2). I have this working without a problem. I do get the bearer token successfully, assign it to an Environment variable and … Read more

How to upload a file and JSON data in Postman?

In postman, set method type to POST. Then select Body -> form-data -> Enter your parameter name (file according to your code) and on right side next to value column, there will be dropdown “text, file”, select File. choose your image file and post it. For rest of “text” based parameters, you can post it like normally you do with … Read more