Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
13,277 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi , I was trying to insert data to a microsoft list using Graph API in python with an access token:
access_token = self.get_access_token()
list_id = "X"
site_id = "X"
url=f"https://graph.microsoft.com/v1.0/sites/{site_id}/lists/{list_id}/items"
headers
}
for
data
response
When I raise the response error, I get 'error': {'code': 'generalException', 'message': 'General exception while processing'} I'm trying to understand what's going on. Thanks
Hi Joel, could you please provide more details on this, like what permissions you are using?