tableau / server-client-python

A Python library for the Tableau Server REST API
https://tableau.github.io/server-client-python/
MIT License
648 stars 416 forks source link

Workbook Item Description and Webpage URL always returns "None" using get_by_id() #1408

Open AverageJoeGuy-tech opened 3 weeks ago

AverageJoeGuy-tech commented 3 weeks ago

Workbook description and webpage url fields always return "None" even when set using get_by_id API.

Tableau Server version: 2023.3.5 Python version: 3.12.4 TSC library version: 0.31

  1. Set the description of workbook "Test Workbook" in Details -> About: "Test description"
  2. Retrieve the description using API and workbook id workbook = server.workbooks.get_by_id('workbook_id') print(workbook.name) print(workbook.description) print(workbook.webpage_url)

Results: "Test Workbook" "None" "None"

Using the REST API retrieves the correct information.