DELETE /api/collections/< collection_id >/bookmarks/< bookmark_id >
Remove a bookmark from a collection.
Removes a specific bookmark from a user's collection. This operation allows users to curate their collections by deleting unwanted bookmarks.
Endpoint
DELETE /api/collections/<collection_id>/bookmarks/<bookmark_id>
Parameters
| Name | Type | Description |
|---|---|---|
| collection_id | string | The unique identifier of the collection from which to remove the bookmark. |
| bookmark_id | string | The unique identifier of the bookmark to be removed from the collection. |
Response
| Status | Description |
|---|---|
| 204 | The bookmark was successfully removed from the collection. Returns null. |
| 404 | The specified collection or bookmark was not found. Returns object. |