We were using python SDK to access smartsheet API's. Have seen most of the end points getting deprecated and provided new end points. Its providing the request with all params using direct API request in documentation. However no reference provided for using python SDK/other SDK's to access the API.
Is Smarthsheet API access via SDK wont be available in future for new end points? Only direct API access via creating request/httpclient only available
Kindly clarify on this. It would be really appreciated if any one clarify my doubts.
have tried like below and gives error for the param maxItems
workspaces = ss_client.Workspaces.list_workspaces(includeAll=true) — (deprecated end point)
workspaces = ss_client.Workspaces.list_workspaces(maxItems=100) — (new endpoint with new param)
Do we need to upgrade the python SDK too? From which version it will support new endpoints