Power Automate - How to update SharePoint Created, Created By, Modified, Modified By Fields?

Описание к видео Power Automate - How to update SharePoint Created, Created By, Modified, Modified By Fields?

This video explains how to update SharePoint system fields Created, Created By, Modified, Modified By.

REST API
_api/web/lists/getbyTitle('ajlist')/items({Here place the id of the record})/ValidateUpdateListItem

Header
Content-Type application/json;odata=verbose

Http Body

{
"formValues":[
{
"FieldName":"Author",
"FieldValue":"[{'Key':'i:0#.f|membership|[email protected]'}]"
},
{
"FieldName":"Created",
"FieldValue":"19/01/2000"
},
{
"FieldName":"Editor",
"FieldValue":"[{'Key':'i:0#.f|membership|[email protected]'}]"
},
{
"FieldName":"Modified",
"FieldValue":"21/01/2000"
}

]
}

Комментарии

Информация по комментариям в разработке