Which HTTP request method should be used for idempotent operations that do not modify resources?

  • DELETE
  • GET
  • POST
  • PUT
The GET method should be used for idempotent operations that do not modify resources. GET requests are considered safe and idempotent, making them suitable for operations that retrieve data without causing side effects on the server.
Add your answer
Loading...