Savageman
Savageman

Reputation: 9487

Microsoft Graph Email API (webhooks) for personal accounts?

I'm using the Microsoft Graph API to get webhooks for an email account. While this seems to work fine for enterprise accounts (Office365) using the v1 endpoint, it seems I need to use the beta endpoint for personnal accounts (Hotmail, Live.com, Outlook.com etc.).

I'm not especially confident using something label as beta should I be worried? Is it reliable or is it going to break someday?

Thanks!

Upvotes: 1

Views: 261

Answers (1)

Marc LaFleur
Marc LaFleur

Reputation: 33114

The /beta version of Microsoft Graph is a true "beta" and generally should not be used in a production environment. They can, and do, have breaking changes roll in without warning. They are intended for testing and future development, not for day-to-day use.

From the documentation:

Expect breaking changes to the beta version from time to time. Do not take a production dependency on /beta APIs.

also

We make no guarantees that a beta feature will be promoted to the current version. When the Microsoft Graph API team believes that a beta feature is ready for general availability (GA), we will add that feature to the latest current version.

Upvotes: 1

Related Questions