Saurav Sircar
Saurav Sircar

Reputation: 187

Microsoft Graph API for OOO message

I was working with the Microsoft graph APIs and was wondering if there was an API for setting Out of Office messages for a user?

The documentation doesn't seem to have this feature.

Upvotes: 3

Views: 1435

Answers (1)

Robert Dyjas
Robert Dyjas

Reputation: 5227

There's automaticRepliesSetting property in user mailbox settings. That should be the one you are looking for.

The properties you can use are similar to what you have in Set-MailboxAutoReplyConfiguration so:

externalAudience
externalReplyMessage
internalReplyMessage
scheduledEndDateTime
scheduledStartDateTime
status

Upvotes: 2

Related Questions