DELETE /api/bookmarks/< bookmark_id >
Soft-delete a bookmark (moves to trash).
Soft-delete a bookmark, moving it to the trash. This operation does not permanently remove the bookmark but marks it for deletion.
Endpoint
DELETE /api/bookmarks/<bookmark_id>
Parameters
| Name | Type | Description |
|---|---|---|
| bookmark_id | string | The unique identifier of the bookmark to be soft-deleted. |
Response
| Status | Description |
|---|---|
| 204 | Indicates that the bookmark was successfully soft-deleted. No content is returned. Returns null. |
| 404 | Indicates that the bookmark with the specified ID was not found. Returns object. |