Is any way to update createdAt, publishedAt dates using POST query

Hi,
I’m in the same situation…
I want to create a new content “overriding” the creation/update date (I’m migrating an old site)
This is the request’s body

{
  "data": {
    "title": "Hello",
    "slug": "hello11",
    "createdAt": "818035920000",
    "updatedAt": "818035920000",
    "publishedAt": "818035920000",
    
  }
}

The entry is created but with a “current” datetime and not the “old one”.
Any ideas?