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#.
Hello - I am trying to use the Insert Row Power Automate Smartsheet connector and it works when the sheet ID is static/hardcoded; however, I need to be able to pass in the Sheet Id from prior step. When I change from static Sheet Id to dynamic, all of the sheet column fields go away. The problem I am having is formatting…
Hello everyone, I will need to use Smartsheet API to ingest data from Smartsheet to an object storage. To do that, my client will create a view only account for me. If I understand correctly, to use the API the account needs to be licensed, so we will need to pay for this "service account". That is correct?
Hello, I am unsure of the feasibility of this goal but am hoping someone could provide some insight. Within my organization we have the following structure Workspace → Workspace → Folder. Within this folder we have additional folders that are added through an API integration we have setup. I am hoping we would be able to…