Bookmark - Updates a bookmark's details
Enter ID of an existing bookmark.
Enter ID of an existing report.
The requested API version
1.0
Optional User Id
Class for updating the properties of bookmark.
A public property of type nullable string that has both a getter and a setter method, which allows for getting and setting the value of the BookmarkState property.
A public property of type nullable string that has both a getter and a setter method, which allows for getting and setting the value of the DisplayName property.
Enum for bookmark type.
Success: Bookmark details successfully updated.
Unauthorized: Invalid credentials or missing/invalid authentication token.
Forbidden: Access denied for updating this bookmark due to insufficient permissions or account restrictions.
Not Found: The specified bookmark or report does not exist, the URL is invalid, or the resource has been deleted.
Conflict: The update request could not be completed due to a conflict with the current state of the bookmark, such as attempting to modify a bookmark that has been changed or deleted by another process.
Internal Server Error: An unexpected error occurred or a server timeout.
PUT /reports/{reportId}/bookmarks/{bookmarkId} HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 63
{
"bookmarkState": "text",
"displayName": "text",
"type": "personal"
}
{
"reportId": "123e4567-e89b-12d3-a456-426614174000",
"modifiedByUserId": "text",
"bookmarkState": "text",
"displayName": "text",
"reportBookmarkId": "123e4567-e89b-12d3-a456-426614174000",
"type": "personal"
}
Last updated