new coder
new coder

Reputation: 313

Using office 365 API without Aceess directory

I am interested in integrating office365 with my application. Is it possible to add a user to an office 365 account via the office365 API without the use of an active directory? I just want to call an API method which will create the user on office 365 account without adding that same user to office 365.

Thanks

Upvotes: 0

Views: 137

Answers (1)

Joe Healy
Joe Healy

Reputation: 5817

Active directory is the authentication method for o365 application integration. No way around it really.

Its really not that bad. Integrate your o365 with Azure AD, add your app to your AD, get a token and go. The labs in this free Microsoft Virtual Academy class do a great job walking you through it. Pay attention to Lab#5, introduction to the o365 dev apis.

http://www.microsoftvirtualacademy.com/training-courses/introduction-to-office-365-development

Upvotes: 1

Related Questions