Posts Learn Components Snippets Categories Tags Tools About
/

How to Delete Resource with the Fetch API

Learn how to delete an external resource with the use of Fetch API

Created on Aug 31, 2021

240 views

To delete an external resource from your front-end application you can make use of the Fetch API. The implementation is very as simple as providing the "endpoint URL" as the 1st parameter and an object with the configuration/details which is necessary.

DELETE Resource with Fetch API Code Example


For the example, we'll be calling the "JSONPlaceholder" which is a fake API for testing and the endpoint will be the following.
https://jsonplaceholder.typicode.com/posts/1
The full code will be like below. Do note that the resource will not be really updated on the server but it will be faked as if.
fetch('https://jsonplaceholder.typicode.com/posts/1', {
  method: 'DELETE',
});

If you like our tutorial, do make sure to support us by being our Patreon or buy us some coffee ☕️

Load comments for How to Delete Resource with the Fetch API

)