Hello, I'm trying to get records from a SQL table into Smartsheet using C# and ultimately SSIS (via script command). I'm stuck on how to add the rows into Smartsheet.
1. I want to add the rows dynamically without having to code the column id. I see that there is Bulk Operations but very little documentation for it. This command seems to be possible without having to use a column ID: POST /sheets/{sheetId}/rows. Does anyone know how to use this? I'm guessing I would need to implement REST code in my C# app.
2. If I don't go with the above, is there a way to just loop through sheet columns and write the data from a SQL column? I'm guessing I would have to dynamically pull the column ID.
Hope this all makes sense.