Skip to content Skip to sidebar Skip to footer

Postman PUT JSON Returns Null

I have this array that I am trying to use PUT to change the value of statuses. I am using Postman (A REST client -- http://www.getpostman.com/). When I change over to the x-www-for

Solution 1:

We need to see your Node.js code to best answer you, but my guess is (I suppose you're using body-parser) you need to set the extended option to true so that it's able to parse more complex bodies.

So that would be :

app.use(bodyParser.urlencoded({ extended: true}));

Post a Comment for "Postman PUT JSON Returns Null"