Set numericDates=true from Smartsheets Java API

96 Views Asked by At

I am reading the values of cells from a SmartSheet sheet, but would prefer the DateTime information in the modified column to be numeric. The API reference says I can set numericDates=true to accomplish this, but I can not figure out how or where to include/set this from java.

1

There are 1 best solutions below

1
On

Per the docs, numericDates is a query string parameter, so you'd tack it on to the end of the URL, like so:

GET https://api.smartshhet.com/2.0/sheets/12345?numericDates=true