Sign in to join the conversation:
I am using c# to try get the attachment id of an attachment in a certain row in order to download the attachment. How can I achieve this?
Hi Lorenzo, Smartsheet has an endpoint for that. The documentation is in the Attachments section, under List Row Attachments. In C#, here's what that would look like:// Omit pagination parameters<br /> PaginatedResult<Attachment> attachments = smartsheet.SheetResources.RowResources.AttachmentResources.ListAttachments( 2252168947361668, // long sheetId 4293147074291588, // long rowId null // PaginationParameters );
// Omit pagination parameters<br /> PaginatedResult<Attachment> attachments = smartsheet.SheetResources.RowResources.AttachmentResources.ListAttachments( 2252168947361668, // long sheetId 4293147074291588, // long rowId null // PaginationParameters );
Ok so my next question is how do I make it a url/link in the c# screen?
We are a construction company and I am trying to build automations and a dashboard for tracking "Outstanding Update Requests" - Each of our Line-Item tasks require us to acquire information from 3rd parties. This information takes standard forms (Start Date, End Date, Comments, Attachments, etc), but the specific fields…
Since I tried to report this as a technical issue and was redirected by a useless AI to this Community, I'd like to ask if anyone here has had the same experience? Screenshot attached, and needless to say, it is not convenient at all.
What happens if a System Admin deletes a user who owns items without transferring those items to another user?