Skip to main content
DELETE
/
bookmark
/
folder
/
{folderId}
cURL
curl --request DELETE \
  --url https://our-secret-api-url.com/bookmark/folder/{folderId} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-KEY: <x-api-key>'
{
  "success": true,
  "folder": {
    "id": 123,
    "name": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "userId": 123,
    "bookmarkCount": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-KEY
string
required

API key required for authentication

Path Parameters

folderId
integer
required

ID of the folder to delete

Response

Folder deleted successfully

success
boolean
folder
object