Questions tagged [office365api]

The Office 365 API lets developers build apps that use data stored within Office365. These can be stand-alone apps or plugins within the Office365 web apps.

Whether you want to incorporate the richness of Office 365 data into your app, or create a custom experience within Office 365 itself, or use custom reports to keep your Office 365 Enterprise environment running smoothly, you can use the following developer features to achieve your goals.

  • Integrate Office 365 data into your own apps
  • Create custom experiences within Office 365
  • Analyze and manage the health of your Office 365 Enterprise environment

You can also create custom experiences within the Office clients, such as Word, Excel, and PowerPoint, and within SharePoint 2013 and SharePoint Online.

Useful Links:

  1. Overview
  2. API reference
1287 questions
-1
votes
1 answer

Modify MS 365 unified group membership using PowerShell with Enterprise app authentication

Im trying to run the following command: Add-UnifiedGroupLinks -Identity 'groupemail@domain.com' -LinkType members -Links kavehtest114@gelion.com However, the error I am getting is: Write-ErrorMessage : |Microsoft.Exchange.Net.AAD.AADException|We…
Kav
  • 9
  • 2
-1
votes
1 answer

office365 outlook mail attachments to s3

how to sync office 365 outlook mails with attachments to AWS S3 automatically? it must be on server or some microsoft app or some lambda function. I don't want to do it via pc I tried to find some connectors but without luck
goka
  • 1
  • 3
-1
votes
1 answer

how to fetch Share-point OAuth 2.0 access and refresh token for share-point API's

I am working on the share-point API via the OAuth 2.0, As Basic auth will be deprecating. So i am able to find the access token, however when passing the access token to the share-point API it is generating error with Status code 401 Unauthorized. I…
-1
votes
1 answer

Office 365 Graph API Call from PS stopped working ( SSPR)

I used to download usercredentialusagedetails through PS and it used to work fine until few weeks ago and now it fails. Request : GET https://graph.microsoft.com/beta/reports/userCredentialUsageDetails More Details :…
-1
votes
1 answer

0365 Authentication .NET CORE

I am aware of Azure Active Directory, but not sure where to start.. or if it's the best option. I have a .NET core App (deployed to Azure WebApp). I want to secure this app with o365 auth. When the person has logged in, I need to be able to track…
-1
votes
2 answers

REST API DELETE LIST ITEM - USE THIS CODE

Delete Items: This Code will help to delete the item in list using REST API for SharePoint. var SiteUrl = _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getbytitle('ListName')/items('" + courtids + "')"; $.ajax({ url:…
-1
votes
1 answer

How do I get the image of an excel chart using Microsoft Graph API ? from c#

I have implemented the following method in c# public static async Task GetChart(string idItem, string nameSheet) { var graphClient = GetAuthenticatedClient(); var chart = await…
-1
votes
1 answer

omniauth-office365 gem permission error from Outlook rest API

Hello All implementing basic office 365 integration to contacts from a rails application. I have already connected with google using omniauth-google-oauth2 and google-api-client. I am following…
Louie
  • 29
  • 3
-1
votes
1 answer

How to publish an Office 365 MS Outlook Addin

I have published v1 of my Office 365 Outlook AddIn a few months ago via seller dashboard. Now, I need to publish an update. The old version is hosted on a server and placed in some directory: /AddInV1/ New Addin I have placed like this…
-1
votes
1 answer

Programatically download files from public sharepoint directory

I want to list and download files from public Sharepoint directory. I have link in format https://xxx.sharepoint.com/:f:/s/site_name/long_id?e=shorter_id which redirects…
Banciur
  • 75
  • 6
-1
votes
1 answer

is there any API's is exists for uploading a file into the share point (office 365)?

Is there any API's there to upload a file to the share point location (office 365) ? I have already tried with graph Api but which have only get method so please assist me on this, I have already gone through below…
-1
votes
1 answer

Why is there more details available in Powershell than REST API for Exchange Online Servers, Azure Active Directory and other are present in cloud

I have been going through the API documentation and though there is a lot of APIs available it is not quite comparable to the details provided through PowerShell. Since these features exist in the cloud it is much easier to develop endpoints rather…
-1
votes
1 answer

How to send mail using Office365 REST API?

I am working with Office365 REST API. I am facing problem in sending email. I can't find any help in core php. I am able to access mails and attachments but unable to send a mail. Here is what I have tried so far. // SEND MAIL…
Zeeshan Ch
  • 51
  • 6
-1
votes
1 answer

How to Access Office 365 Calendar If Someone granted permission to access calendar?

I granted permission to the app that is registered with Microsoft to access the calendar. Now I want that app to access my calendar. How it is possible with Micorsoft Graph to access calendar any time if access is granted? What should be steps to…
Filmjamr Movies
  • 897
  • 2
  • 7
  • 15
-1
votes
1 answer

Office 365 Calendar Integration

I want to users to grant permission to grant calendar view and scheduling permissions for there outlook/office 365 calendar through my app. I want to show the office 365 calendar to my application from where users can see their calendar and create…