The _____ HTTP method is utilized to update existing resources.

  • PUT
  • POST
  • PATCH
  • DELETE
The PATCH HTTP method is utilized to update existing resources in a RESTful API. Unlike PUT, which replaces the entire resource, PATCH is used to make partial updates. It allows clients to send only the data that needs to be changed rather than sending the entire resource. This can be more efficient and reduces the risk of overwriting data unintentionally.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *