Skip to main content
DELETE
/
api
/
v1
/
folders
/
{id}
Delete folder
const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};

fetch('https://studyfetchapi.com/api/v1/folders/{id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

id
string
required

Folder ID

Response

200

Folder deleted successfully