Hi,
One possible workaround, albeit not a very nice one is to
1) get the response from rest as a string
2) use a regex replace, or a java action to change
"/Date(1481673600000)/" -> 1481673600000
(without the quotes).
3) use the import with mapping action to convert the changed string to a mendix object.
-Andrej
What does your JSON schema look like for the date field? You might need to treat the data as a string in the schema (i.e., wrap the value in quotes) since it looks like the value you're getting back isn't just
1481673600000
like Mendix expects for a date but instead
"/Date(1481673600000)/"