wrong class attribute in Search Sheet (Smartsheet API 2.0)
DanS
✭✭✭✭
Based on the Python documentation of the Search Sheet functionality under Smartsheet API 2.0 (https://smartsheet-platform.github.io/api-docs/index.html?python#search-sheet) I kept getting an error with this code:
response = ss.Search.search_sheet(sheet_id, sys.argv[1])
print(response.totalCount)
It turns out the attribute is not totalCount but total_count.
so this works:
response = ss.Search.search_sheet(sheet_id, sys.argv[1])
print(response.total_count)
Typo error in the API documentation?
Tags:
Comments
-
The sample response shows the raw json data. The Python SDK converts all properties to Python-standard "snake case."
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.1K Get Help
- 414 Global Discussions
- 221 Industry Talk
- 460 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 461 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives