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?
Hi, if I add a new row above an existing row which has a predecessor, does Smartsheet automatically update the predecessor number ?
Solution is to have a paid subscription which we have but have lost the functionality of emailing attachments from Smarsheets. Has anyone else had this issue?
Hi Community, Under the User Subscription Model (USM), I’d like to clarify what happens when a Licensed User who owns sheets or other assets is downgraded to a Viewer. From my understanding: The user will no longer be the owner of the sheet or asset. However, they will still retain access to the item, but only as a Viewer.…