the json value could not be converted to system datetime

Solutions on MaxInterview for the json value could not be converted to system datetime by the best coders in the world

showing results for - "the json value could not be converted to system datetime"
Farah
12 Oct 2017
1your date value in your JSON isn't correct. should be
2
32019-01-06T17:16:40
4Most parsers use ISO 8601
5
6You can use
7
8new Date(stringValue).toISOString()
9
10Then your post will work using the correct date format :)