Sign in to join the conversation:
How to un-hide all columns in a smartsheet using smartsheet C# SDK?
The hide attribute on the column object can be read to see the current status of a column and if it is hidden or not, but it currently it isn't writable to allow changing its state. Using the Smartsheet API you can see the current status of columns and if they are hidden or not, but you aren't able to adjust the value to hide or unhide columns. That would need to be done manually in Smartsheet in your browser.
You might check out the Smartsheet API documentation. There are examples for updating columns.
https://smartsheet-platform.github.io/api-docs/?csharp#update-column
Just update the column attribute 'hidden' to False. I'm not into c#. But see the screenshot for Python. The documentation has a similar example for c#.
We are trying to enable Oauth for Smartsheets to read data from our application. We are trying to create an application but unable to find Developer tools option Could you please guide us if there are any steps to follow to enable developer tools?
Based on info available in the changelog (specifically https://developers.smartsheet.com/api/smartsheet/changelog#2025-08-04) ) for some endpoints offset-based pagination is being replaced with token-based pagination. Is there a list of endpoints that will be impacted by this change? I am trying to stay ahead of this and…
We are currently using the Smartsheet API to export and send a sheet as a PDF via email as part of an automated workflow. While generating the PDF, we are able to specify the paper size (for example, A4 or A3). However, we are facing limitations with the following formatting controls: Orientation We are unable to…