You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removes one or more tags from the specified workbook.
7023
+
7024
+
REST API: [Delete Tag from Workbook](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#delete_tag_from_workbook)
7025
+
7026
+
**Parameters**
7027
+
7028
+
Name | Description
7029
+
:--- | :---
7030
+
`item` | The `WorkbookItem` or workbook ID to remove tags from.
7031
+
`tags` | A single tag string or iterable of tag strings to remove.
Updates the tags on the server to match the tags on the specified workbook item. Changes to tags must be made on the `WorkbookItem.tags` attribute before calling this method.
7053
+
7054
+
**Parameters**
7055
+
7056
+
Name | Description
7057
+
:--- | :---
7058
+
`item` | The `WorkbookItem` whose tags to synchronize to the server.
7059
+
7060
+
**Returns**
7061
+
7062
+
None.
7063
+
7064
+
**Example**
7065
+
7066
+
```py
7067
+
workbook_item.tags.add('quarterly')
7068
+
server.workbooks.update_tags(workbook_item)
7069
+
```
7070
+
7071
+
<br>
7072
+
<br>
7073
+
7074
+
#### workbooks.filter
7075
+
7076
+
```py
7077
+
workbooks.filter(**kwargs)
7078
+
```
7079
+
7080
+
Returns a list of workbooks that match the specified filters. Fields and operators are passed as keyword arguments in the form `field_name=value` or `field_name__operator=value`.
0 commit comments