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 } }
Delete a bookmark folder
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
API key required for authentication
ID of the folder to delete
Folder deleted successfully
Show child attributes