I have a smartsheet that uses conditional formatting. I want to be able to make a call to the API requesting information about the row's conditional formatting. My api call, C# -
Row row = smartsheet.SheetResources.RowResources.GetRow(sheetID, rowID, new RowInclusion[] { RowInclusion.COLUMNS, RowInclusion.COLUMN_TYPE, RowInclusion.FORMAT }, null);
The row object returns "conditionalFormat=null", also "Format=null". I have confirmed that this is the row with the conditional formatting applied.
In the documentation I came across this -
"Use the "include=format" query-string parameter on API operations that return detailed objects, such as GET /sheets/{sheetId}
or GET sheets/{sheetId}/rows/{rowId}
. If there is formatting other than default settings, the return includes a format property. If an object has conditional formatting, the format property returned will have a conditionalFormat value."
I have tried several different approaches, including cURL calls, and I have not been able to get info on conditional formatting. I may be overlooking something, any help would be appreciated.
Thank you
