Hi there
I'm trying to update the column value of a column I created on a SharePoint site. I found this blog post which describes how to do this.
On my test site this worked out. However, on the prod site I get the following error with code 403:
{
"error": {
"code": "accessDenied",
"message": "Request was cancelled by event received. If attempting to delete a non-empty folder, it's possible that it's on hold",
"innerError": {
...
}
}
}
Therefore my questions are the following:
- What does that error mean and how can I resolve it?
- The error code is a 403, meaning forbidden. What kind of permissions does my app need to achieve this? Update: It currently has the following relevant for SharePoint:
- Files.ReadWrite.All
- Sites.FullControl.All
- Update 2: Figured out that the 403 only happens for sites connected to MS-Teams!
- Is there another way to update a column value on SharePoint that I can/should try?
Thanks for your help!