[Fixed]-DRF serializes datetime differently in the GET response vs POST response

1👍

So far I couldn’t figure out what causes this, but explicitly enforcing format string helps:

start_date=serializers.DateTimeField(format='%Y-%m-%d %H:%M:%S')

Leave a comment