[Answered ]-Django rest_framework datetime_format with milliseconds

1👍

I think I found an answer, the option would be:

REST_FRAMEWORK = {
    'DATETIME_FORMAT': '%s%03d',
}
👤Nik

Leave a comment