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 identified by its unique ID. Only the fields provided in the request body will be updated.

Endpoint

PUT /api/bookmarks/<bookmark_id>

Parameters

NameTypeDescription
bookmark_idstringThe unique identifier of the bookmark to update.

Request Body

FieldTypeDescription
any_fieldstringAny field of the bookmark that needs to be updated. The type will match the field's original type.

Response

StatusDescription
200Bookmark updated successfully. Returns application/json.
400Invalid request data provided. Returns application/json.
404Bookmark not found. Returns application/json.