javascript - How to upgrade Outlook 2010 to 365 Custom User Properties -
we looking upgrade office 2010 c# add-in , part of code saves info extended properties read server side exchange:
class="lang-cs prettyprint-override"> item.userproperties.find("jobid", true).value = "1234"
the visual studio 2013 outlook 365 app appears utilize following.
class="lang-js prettyprint-override"> _mailbox.item.loadcustompropertiesasync(custompropscallback); _customprops.set('jobid', $('#jobid').val()); _customprops.saveasync(savecallback);
http://msdn.microsoft.com/en-us/library/office/fp161021(v=office.15).aspx
how can save straight extended properties 365 app? https://outlook.office365.com/ews/odata/me/calendars('calendar')/events?$top=10 doesn't show them.
i don't think ews phone call work appointment might not saved yet.
should 365 properties server side update exchange item? feels wrong.
will have alter server side code extended properties , custom properties?
thanks
javascript outlook exchange-server office365 office365-apps
No comments:
Post a Comment