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?
I have a dashboard that has a report widget and I was wondering, can that widget also show the documents attached to a row so you can click on them or is that only in the sheet?
Is there a way to prevent a shared user from seeing the data in the "View Detail" option? I'm trying to make sure that when a user is given access to view a report, they can only view the columns present in that report. The view might only show certain columns but the user can then click on the record as shown below and…
I have a project sheet with a Gantt chart where the timescale headings are not aligning with my project’s fiscal year and start/end dates. Configuration: - Primary heading: Quarters (displaying as Q4 2026) - Secondary heading: Months (MMM format) - Fiscal year start: February 2 - Week start: Sunday - Project start date:…