How to add author name while creating page from rest call in confluence server

Hi , I am creating confluence page using rest call. I am trying to add creator , author name while creating confluence page. But it is not working. Please help me.
{
"type“:"page”,
"title“:"$pageTitle”,
"currentuser“:"chandrasekhar”,
"creator“:"chandrasekhar.vanapalli”,
"space“: {"key”:"$space"},
"body":{
"storage":{
Thank you

Hello @chandrasekhar , if you are using the REST Api to create content on Confluence , you do not need to set the creator in the request payload , the creator gets derived from the authenticated user on the request instead

So just make sure your REST request is sent with the correct authentication you need