leo
leo

Reputation: 437

Why can't I "PUT" data on JSONPlaceholder through Postman?

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?

Upvotes: 1

Views: 2012

Answers (2)

Baran Uçum
Baran Uçum

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

A.Joly
A.Joly

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

Related Questions