Reputation: 437
I am trying to put data on JSONPlaceholder through Postman, as seen in the screenshot:
But I could not find that data on JSONPlaceholder..
Did I do anything wrong or did the website just ignored my PUT
request silently?
Upvotes: 1
Views: 2012
Reputation: 1
JSONPlaceholder Guide Put Method Important: resource will not be really updated on the server but it will be faked as if.
Upvotes: 0
Reputation: 2387
Have a look at JSONPlaceholder Guide under "Creating a Resource".
You will find a note that states:
Important: resource will not be really updated on the server but it will be faked as if.
Your request works (Status Code: 201) but the resource is not actually created.
Upvotes: 1