curl --request PATCH \
--url https://api.example.com/v1/worksheets/{worksheet}/organizer \
--header 'Content-Type: application/json' \
--data '
{
"worksheet": "<string>",
"starred": true,
"folders": [
"<string>"
]
}
'{
"worksheet": "<string>",
"starred": true,
"folders": [
"<string>"
]
}Update the organizer of a worksheet. The access is the same as UpdateWorksheet method. Permissions required: bb.worksheets.get (or creator, or project member for shared worksheets)
curl --request PATCH \
--url https://api.example.com/v1/worksheets/{worksheet}/organizer \
--header 'Content-Type: application/json' \
--data '
{
"worksheet": "<string>",
"starred": true,
"folders": [
"<string>"
]
}
'{
"worksheet": "<string>",
"starred": true,
"folders": [
"<string>"
]
}The worksheet id.
The list of fields to be updated. Fields are specified relative to the worksheet organizer. Only support update the following fields for now:
starredIf set to true, and the worksheet organizer is not found, a new worksheet organizer will be created.
In this situation, update_mask is ignored.
Was this page helpful?