What is the idempotency of HTTP methods, and how does it apply to PUT or DELETE?
Idempotency means multiple identical requests have the same effect as one.
- PUT → Updating a resource with the same data multiple times results in no further
change.
- DELETE → Deleting a resource repeatedly still results in it being deleted.