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?
When I use the zoom-in option, I can only see the day names but not the specific day numbers. I need my team to be able to see the exact dates for the tasks I have scheduled.
I'm trying to create a graph chart that captures monthly count of records by divisions (Northeast, West and Central) that should be stacked with a legend displaying each by different color like a presented in Excel. When I attempt to duplicate the process in Smartsheet I receive the following results. In Excel, I created…
Hi, I'm using smartsheet to track updates on each task in a tracker. These updates may span over a year, so they get lengthy. I was excited about smartsheets because viewing these notes is a lot cleaner. However, I've just realized that there is a content limit to a cell, which is a huge issue. While excel was annoying to…