cancel
Showing results for 
Search instead for 
Did you mean: 

How to integrate SAPUI5 application with Outlook

Former Member
0 Kudos

Hi All,

I want to integrate my SAPUI5 application to Outlook.The requirement is , on click of a button on the UI I should be able to create an outlook appointment.

I do not want to go ahead with downloading the .ics file and consider it as the last option.

Does anyone has any information on if we already have some standard APIs for this or any other Idea on how to achieve this requirement??

Accepted Solutions (1)

Accepted Solutions (1)

former_member365727
Active Contributor
0 Kudos

haven't tried this, but if you have access to Office 365 with specific roles then you can call REST service as per the below link

Create Outlook Calendar event

Sample JSON input taken from the link above

{
  "Subject": "Discuss the Calendar REST API",
  "Body": {
    "ContentType": "HTML",
    "Content": "I think it will meet our requirements!"
  },
  "Start": {
      "DateTime": "2014-02-02T18:00:00",
      "TimeZone": "Pacific Standard Time"
  },
  "End": {
      "DateTime": "2014-02-02T19:00:00",
      "TimeZone": "Pacific Standard Time"
  },
  "Attendees": [
    {
      "EmailAddress": {
        "Address": "janets@a830edad9050849NDA1.onmicrosoft.com",
        "Name": "Janet Schorr"
      },
      "Type": "Required"
    }
  ]
}

Answers (0)