1

I am trying to put data on JSONPlaceholder through Postman, as seen in the screenshot:

enter image description here

But I could not find that data on JSONPlaceholder..

Did I do anything wrong or did the website just ignored my PUT request silently?

codesnerd
  • 767
  • 2
  • 8
  • 23
leo
  • 357
  • 2
  • 15

2 Answers2

1

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.

codesnerd
  • 767
  • 2
  • 8
  • 23
A.Joly
  • 2,317
  • 2
  • 20
  • 25
0

JSONPlaceholder Guide Put Method Important: resource will not be really updated on the server but it will be faked as if.

  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Apr 13 '22 at 14:33