What HTTP method in a RESTful web service is typically used to completely replace an existing resource?
What HTTP method in a RESTful web service is typically used to completely replace an existing resource?
The HTTP method PUT is typically used to completely replace an existing resource in a RESTful web service. PUT updates the resource at the specified URI with the new data provided in the request body, effectively replacing the entire resource.
D is correct
PUT is correct answer
PUT - replace entire resource PATCH - update part of the resource