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#.
Here are the error details I received: - Status Code: 500 - Error Code: 4000 - Message: "An unexpected error has occurred. Please contact the Support team at https://help.smartsheet.com/contact for assistance." - Recommendation: "Do not retry without fixing the problem." - Reference ID: db211e48-2fcc-419f-b961-b2d0f8a344b0…
I have been using the API to send rows to sheets. Recently I have seen single row submissions showing up as duplicate rows, randomly. Not always. Has anyone else been seeing this phenomenon, or do I have some sort of bug in my code. Using .NET SDK.
As a Smartsheet user, I would like guidance on how to get started with APIs. I am looking for step-by-step instructions on how to understand, access, and use the Smartsheet API for basic tasks such as retrieving data, updating sheets, and automating workflows. It would be helpful to know the tools required, and best…