PUT /< collection_id >/bookmarks
Add a bookmark to a collection.
Expects JSON with ``bookmark_id``.
Adds an existing bookmark to a specific collection by their respective identifiers.
Endpoint
PUT /< collection_id >/bookmarks
Parameters
| Name | Type | Description |
|---|---|---|
| collection_id | string | The unique identifier of the collection where the bookmark will be added. |
Request Body
| Field | Type | Description |
|---|---|---|
| bookmark_id | string | The unique identifier of the bookmark to be added to the collection. |
Response
| Status | Description |
|---|---|
| 204 | The bookmark was successfully added to the collection. |
| 400 | Returned if the bookmark_id is missing, the collection does not exist, or the bookmark is already present in the collection. Returns object. |