PUT /api/bookmarks/< bookmark_id >
Update an existing bookmark. Only the fields present in the JSON body are updated.
Updates an existing bookmark identified by its unique ID. Only the fields provided in the request body will be updated.
Endpoint
PUT /api/bookmarks/<bookmark_id>
Parameters
| Name | Type | Description |
|---|---|---|
| bookmark_id | string | The unique identifier of the bookmark to update. |
Request Body
| Field | Type | Description |
|---|---|---|
| any_field | string | Any field of the bookmark that needs to be updated. The type will match the field's original type. |
Response
| Status | Description |
|---|---|
| 200 | Bookmark updated successfully. Returns application/json. |
| 400 | Invalid request data provided. Returns application/json. |
| 404 | Bookmark not found. Returns application/json. |