PUT /< bookmark_id >
Update an existing bookmark.
Only the fields present in the JSON body are updated.
Updates an existing bookmark's details using the provided JSON data. Only the fields included in the request body will be modified.
Endpoint
PUT /< 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 update. |
Response
| Status | Description |
|---|---|
| 200 | The bookmark was successfully updated. Returns object. |
| 400 | The update failed due to validation errors or invalid input data. Returns object. |
| 404 | No bookmark was found with the specified ID. Returns object. |