Skip to main content

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

NameTypeDescription
bookmark_idstringThe unique identifier of the bookmark to be updated.

Request Body

FieldTypeDescription
dataobjectA JSON object containing the bookmark fields to be updated.

Response

StatusDescription
200The bookmark was successfully updated. Returns object.
400The update failed due to invalid input data or a service error. Returns object.
404No bookmark was found with the specified identifier. Returns object.