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 by its unique identifier, applying only the fields provided in the request body.

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 matching the provided identifier. Returns object.