REST API: I can't change modifier and page creator?

I used REST API to create page with BASIC Auth, but i need overwrite creator and modifier info.

<creator>XWiki.tralala</creator>
<creatorName>tralala</creatorName>
<modifier>XWiki.USERCUSTOM</modifier>
<modifierName>USERCUSTOM</modifierName>

Hi,

you can’t override creator, as by definition it’s the creator of the page… This information is set once at creation and is never reset.
Changing the modifier involve for you to modify the page: you have to save the page, you can use the REST API for that.

1 Like

Thanks !!!