Camunda Task Put Api Exception

I have a project where I am using Camunda.
I wanna update the due date in the task. But I got an exception.

Url: http://localhost:8888/engine-rest/task/3b5bed1e-576b-11ec-bb19-b238ddce3eaf
this request is not working.
{
“due”: “2021-12-09T17:37:41.064Z”,
“name”: “Purchase Order Creation”,
“priority”: 2
}

reponse:
{
“type”: “InvalidRequestException”,
“message”: “”
}

this request is working.
{
“due”: “2021-12-09T17:37:41.064+0300”,
“name”: “Purchase Order Creation”,
“priority”: 2
}

I am using version 7.14.0 of camunda with spring boot. I want camunda to accept this value.