Delete a folder by path
DELETE
/folders/*path
const url = 'https://api.engram.page/folders/*path';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url 'https://api.engram.page/folders/*path' \ --header 'Authorization: Bearer <token>'Removes the folder marker for the given path. Idempotent — deleting a non-existent or never-encrypted folder still returns 204.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”path
required
string
Folder path
Responses
Section titled “Responses”Deleted (empty body)