Hello 
I have 2 SharePoint sites that contains all the same pages in the Site Pages library.
I'm building a Flow that triggers when a file is updated on the source site, and after this it is supposed to update the file on the destination site. (with the new file content)
I'm fetching the file properties from the destination site, so I get the correct ID to update the file with.
Unfortunately I'm getting this error message on the "update file" action:
"status": 403,
"message": "Access denied. You do not have permission to perform this action or access this resource.
Here is my Flow:

Which fails:

{
"status": 403,
"message": "Access denied. You do not have permission to perform this action or access this resource.\r\nclientRequestId: e79d4c4b-edd6-4303-867d-8206f6810716\r\nserviceRequestId: c156cd9e-40bd-0000-99ab-01573b6d7629;c156cd9e-b0c4-0000-99ab-0351f96dcdf5",
"source": "https://ingriddev.sharepoint.com/sites/kopier-til/_api/web/GetFileByServerRelativePath(decodedUrl=@p)/$value?@p='%2fsites%2fkopier-til%2fSitePages%2f11.aspx'",
"errors": [
"-2147024891",
"System.UnauthorizedAccessException"
]
}Has anyone experienced something similar? I have full permission to edit/delete/update files on both SharePoint sites.
Appreciate any thoughts and answers!