All Questions
Tagged with outlook-restapi office365api
157 questions
1
vote
1
answer
649
views
Why can not get body field in response of Microsoft Graph API for listing messages?
I want to read certain email messages and filter them. I am using Microsoft Graph API to query the office 365 mail box as below. I also added API permission "Mail.ReadBasic.All" for getting ...
1
vote
1
answer
1k
views
Graph API - can't create a Online meeting from Microsoft personal account
I tried to schedule a online meeting using create event api from personal account. The online meeting is created as a normal calendar events. When I tried to schedule a online meeting from Teams UI, ...
0
votes
0
answers
261
views
Outlook api trying to get all attachments with /attachments is returning ErrorInvalidAttachmentId
I am new to Outlook and it's API, but from what I understand, I can get a list of attachments for a particular message.
I can get the message correctly with
client.api(`/users/${userId}/messages/${...
0
votes
1
answer
518
views
How to get MIME content of OFT
How to get MIME content of Outlook template file? I need to create an email from file and send it using Graph REST API. In Microsoft Docs I found only different examples.
3
votes
0
answers
57
views
Office365 graph task push notifications issue
We are using this graph API to create a subscription. For the task delete event we are not receiving any notification from Microsoft. We are receiving notifications for creating and updating the same ...
4
votes
1
answer
64
views
Issue in migrating outlook task api (getAllTasks) to graph To-do task api
We are in the process of Migrating from Outlook APIs to Graph Microsoft APIs.
We are unable to migrate task API as we don't find any graph API documentation relating to getAllTasks.
Please help us to ...
0
votes
1
answer
1k
views
How to fetch all emails of all users in an Organization in Office365/Outlook API
I am currently able to fetch Emails for single user using:
https://graph.microsoft.com/v1.0/me/mailfolders/inbox/messages
How do we fetch all emails in an organization in a single call? I do not want ...
1
vote
0
answers
720
views
Any Office 365 REST API(Graph API) to block delivery of certain emails - if its spam
I am exploring an option to see if it's possible to get messages scanned for all mailboxes in an organization (i.e within a domain) and block delivery of certain emails if its spam using Office 365 ...
0
votes
1
answer
1k
views
Outlook add-ins event handler
In outlook account open or outlook account signIn action ,Trigger this action on my outlook add-ins
I want to trigger some function in outlook add-ins when I open the outlook page
I was implement the ...
0
votes
0
answers
456
views
Read all Emails In a Domain For Office365
I want to read all emails in my domain against a query using Office365 Outlook API. Currently, I am enumerating one user at a time and extracting all the emails for it
https://graph.microsoft.com/v1.0/...
0
votes
1
answer
461
views
Microsoft Graph API: Group Calendar Events created by API are not sent to users Calendar
When I create (or update) an Event in the Calendar from the Outlook Desktop Application every member of the group gets the Event in his personal calendar - (or according to the "Follow in Inbox&...
0
votes
0
answers
395
views
Outlook Mail REST API v2.0 OData URL capabilities
Does Outlook Mail REST API support OData URL capabilities like $value ?
I'm able to get the MIME content of an email using:
GET https://outlook.office.com/api/v2.0/me/messages/{message_id}/$value
...
1
vote
1
answer
727
views
Microsoft Graph Rest API: how does "notification endpoint validation" works?
Reading the documentation I see that ... "The client must provide a response with the following characteristics within 10 seconds:"
A 200 (OK) status code.
The content type must be text/plain.
The ...
4
votes
0
answers
373
views
ErrorCode: 'PP_E_RPS_CERT_NOT_FOUND'. Message: ' Internal error: spRPSTicket->ProcessToken failed
I am trying to subscribe a user for push notifications. These are headers that contains a valid access token.
> POST https://outlook.office.com/api/v2.0/me/subscriptions
> Authorization: Bearer ...
3
votes
1
answer
751
views
How to pass date as Query to get_events() in Microsoft O365 calendar in Python
I want to get events of my calendar in a particular date using python O365 library.
#code to create account instance
schedule = account.schedule()
for item in schedule.get_events(query= "start/...