All Questions
Tagged with outlook-restapi node.js
22 questions
1
vote
1
answer
2k
views
Microsoft Graph List outlookTask not returning immutable ID even if it's in preferred in header
So in the documentation, it says if you want to get tasks with immutable id instead of normal one just add a header 'Prefer: IdType="ImmutableId"'. I've done that but it still returns tasks ...
1
vote
3
answers
6k
views
Outlook Create calendar event with NodeJS
I need to create a calendar event in outlook using NodeJS script. I have searched every where and tried different npm packages but i didn't got the solution.
I'm trying to create a calendar event ...
2
votes
1
answer
729
views
How to add multiple calendar events using Microsoft graph
I am able to create a single outlook calendar event but how to create multiple at the same time, is there is any way using Microsoft graph api?
I have tried passing an array of events to api, ...
1
vote
1
answer
75
views
Promise.all no return res map nodejs
We are integrating with Outlook api and we need to group the attachments in the recovered emails:
We re trying this way:
const result = await client
.api('/me/messages')
.filter(...
0
votes
0
answers
152
views
Outlook Node.js add-on not moving mail to another folder on outlook window desktop application
I have made an outlook web-add in using Node.js which performs the
action of moving mail to another folder (like spam) on button click.
The add-in is deployed on a server. It is perfectly working ...
0
votes
1
answer
395
views
POST example for Microsoft graph following their nodejs tutorial
I'm a new fang in these things and I don't understand how a restful API works :(
At this moment I'm trying to use Microsoft Graph in order to read and send mails from a NodeJS web with Outlook 365 ...
1
vote
0
answers
234
views
Outlook api webhook validation error with node js
I'm facing a problem with the validation of the notification url when I want to register a subscription with the outlook API.
The options passed in the request are :
var optionsSubscription = {
...
2
votes
3
answers
936
views
Outlook API time difference in Calendar
I have a problem with the use of the Outlook API specially with the Calendar API.
I send dates with a UTC format and when they are added in the Calendar, I have a difference with the send date.
I'm ...
1
vote
2
answers
892
views
how to retrieve events in recurring series using outlook calendar api 2.0?
I've been using the node-outlook wrapper for the Outlook Calendar REST API. Currently, when I make a request, I can retrieve one-time events and a series master for recurring events (but not ...
2
votes
1
answer
124
views
Remove all but the text written by user
I use Outlook API to fetch the sent email's body. Now, I want to clean the body to remove all links, headers, etc. and keep only the text written by user. Following is my regex function:
function ...
0
votes
1
answer
945
views
outlook api push notification response
I'm setting up push notification using the outlook api, the server is written in nodejs. This is the post request the client makes for the subscription
POST /api/v2.0/me/subscriptions HTTP/1.1
Host: ...
3
votes
0
answers
1k
views
Testing the Outlook REST API leads to suspended account issue
I'm trying to integrate Outlook Mail with a web app I'm working on. I need to do some tests with the API during the development. I'm using the node-outlook library in my NodeJS app. However, after ...
1
vote
0
answers
148
views
Node.js Outlook calendar REST return 500 (internal server error)
I'm attempting to replicate Outlook's REST API tutorial so I can access a list of calendar events. I've literally just followed line by line with the tutorial found here: https://dev.outlook.com/...
1
vote
1
answer
723
views
Outlook API Get Messages not returning Attachment collection
I am using the Outlook Mail REST API to get JSON objects of a collection of a user's emails and display the data in a custom web interface. I need to show a list of emails, and each email in the list ...
0
votes
1
answer
230
views
Change Organiser for Outlook calendar Event in Node.js
How to programmatically change organiser of outlook calendar event?
I have created one calendar event with two attendees using Outlook Rest API so I want to make as a organiser to one of the ...