Neo Harsh
Neo Harsh

Reputation: 13

Microsoft Outlook Rest API

I am trying sync office 365 calendar events with my website for multiple outlook users.

I am referring to the Write a PHP app to get Outlook mail, calendar, and contacts documentation.

As per 'Account requirements' section:

In order to use the Application Registration Portal, you need either an Office 365 work or school account, or a Microsoft account. If you don't have either of these, you have a number of options:

  • Sign up for a new Microsoft account here.
  • You can obtain an Office 365 subscription in a couple of different ways:

So below are my queries,

  1. When referring to 'free 25 users', what does it mean exactly?
  2. For using this API, do we need to buy office 365 subscription?

Upvotes: 1

Views: 2879

Answers (2)

Marc LaFleur
Marc LaFleur

Reputation: 33094

In order to register your application in the Registration Portal (apps.dev.microsoft.com), you either need a Microsoft Account (aka an Outlook.com account) or an account in an Azure AD tenant.

You do not need to have a subscription to Office 365 for this (although it would seem pretty valuable to have one if you're going to be writing code that uses an O365 API).

You can obtain a free developer account via the Office 365 Developer Program. This program includes a free 12-month subscription to Office 365 for use in development and testing.

Upvotes: 0

Gopal Zadafiya
Gopal Zadafiya

Reputation: 291

1) When referring to 'free 25 users', what does it mean exactly?

If you will go for trial of office 365 subscription, you can have maximum 25 users and 1 month trial period limitation. after that the account will be expired.

2) For using this API, do we need to buy office 365 subscription?

If your all outlook users for which you want to sync calendar events are Microsoft organizational accounts ([email protected]) then you don't need office 365 subscription. otherwise you will need the one

Upvotes: -1

Related Questions