[Answered ]-Converting a JS Date to a Python date object

2👍

Given the format in the error message, then the client you can use ES5s Date.prototype.toISOString() to convert a Date object to an ISO 8601 string. You’ll need a polyfill for browsers that don’t have it.

👤RobG

Leave a comment