...
/Design the DELETE Endpoint for Removing an Existing Product
Design the DELETE Endpoint for Removing an Existing Product
Understand the DELETE method and design the products API to delete an existing product.
We'll cover the following...
The delete operation in the REST world doesn’t guarantee the deletion of the specific entry by the server. The server may choose to mark it as deleted for the future or consider it as an entry that is no longer accessible. With that in mind, let’s delve into the details of the DELETE method.
Removing an existing product
The W3C specification states that “The DELETE method requests that the origin server delete the resource identified by the Request-URI. This method may be overridden by human intervention (or other means) on the origin server. The client cannot be guaranteed that the operation has been carried out, even if the status code returned from the origin server indicates that the action has been completed successfully. However, the server should not indicate success unless, at the time the response is given, it intends to delete the resource or move it to an inaccessible ...