Question
Field 'updatedAt' of type Datetime
When I am updating a lead via Rest API, Datetime field 'updatedAt' does not get updated.
Following is my partial Json object. I have many more fields and they all get updated except 'updatedAt'.
"input":[{"updatedAt":"2015-02-06T14:36:07-08","firstName":"John","lastName":"Smith"}]
I noticed that this field is of type 'DateTime'.
What Java datatype I should use in order to update this field?
Appreciate any suggestions.
Following is my partial Json object. I have many more fields and they all get updated except 'updatedAt'.
"input":[{"updatedAt":"2015-02-06T14:36:07-08","firstName":"John","lastName":"Smith"}]
I noticed that this field is of type 'DateTime'.
What Java datatype I should use in order to update this field?
Appreciate any suggestions.