To retrieve all documents within a SharePoint library that have not been modified in the last six months using the SharePoint REST API, you need to construct a specific OData filter query within your API request. First, you need the URL of your SharePoint library. Assuming your SharePoint site is 'https://yourtenant.sharepoint.com/sites/yoursite' and your library is named 'Documents', the base URL would be 'https://yourtenant.sharepoint.com/sites/yoursite/_api/web/lists/GetByTitle('Documents')/items'. To filter the documents by their 'Modified' date, you need to add an OData filter query to the ....
Log in to view the answer