nmarus / node-ews

A simple JSON wrapper for the Exchange Web Services (EWS) SOAP API.
MIT License
116 stars 52 forks source link

Get events of a user #75

Closed romainpa closed 6 years ago

romainpa commented 6 years ago

Hello,

I try to get appointments of a specific mailbox like "what is my next meeting".

I've seen online documentation like https://msdn.microsoft.com/en-us/library/office/dn495614(v=exchg.150).aspx But on my ews/Services.wsdl, I got nothing regarding Calendar or Appointments.

Any idea of the way to do it ?

Thanks,

kcastrotech commented 6 years ago

The instructions in the link you provided works fine for me.

  1. Run GetFolder to get the folder ID and ChangeKey for the calendar folder.
  2. Run FindItem to get the items for the folder specified in step 1.

What seems to be the issue?

romainpa commented 6 years ago

In fact, using your recommendations it works. I wasn't using the good way to solve my need.

kcastrotech commented 6 years ago

Glad you got it working.

niclego commented 6 years ago

Do you know why this would not be returning a subject on the CalanderItems? screen shot 2018-06-25 at 10 00 21 am