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.
Asked
Active
Viewed 76 times
1 Answers
0
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

KevinT
- 76
- 3
-
Thanks for the reply, but I was trying to do this using the Java API – S.Fitzgerald Dec 14 '16 at 03:22