PUT /api/bookmarks/< bookmark_id >
Update an existing bookmark.
Only the fields present in the JSON body are updated.
Updates an existing bookmark's information using the provided unique identifier and JSON data. Only the fields included in the request body will be modified.
Endpoint
PUT /api/bookmarks/< bookmark_id >
Parameters
| Name | Type | Description |
|---|---|---|
| bookmark_id | string | The unique identifier of the bookmark to be updated. |
Request Body
| Field | Type | Description |
|---|---|---|
| data | object | A JSON object containing the bookmark fields to be updated. |
Response
| Status | Description |
|---|---|
| 200 | The bookmark was successfully updated. Returns object. |
| 400 | The update failed due to invalid input data or a service error. Returns object. |
| 404 | No bookmark was found with the specified identifier. Returns object. |