How are you sending it to the Restlet? JSON?
# suitescript
e
How are you sending it to the Restlet? JSON?
n
@erictgrubaugh JSON
e
Then your Restlet is going to receive the date as a String like
YYYY/MM/DDThh:mm:ssZ
which you will need to parse into a
Date
Object before you can set it on a record
I forget the exact JSON date format, but the point is you're getting a serialized Date which you are going to need to parse
n
excellent thank you.