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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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 :)