Skip to main content

lifecycle_workflows_workflows_created_by_mailbox_settings

Creates, updates, deletes, gets or lists a lifecycle_workflows_workflows_created_by_mailbox_settings resource.

Overview

Namelifecycle_workflows_workflows_created_by_mailbox_settings
TypeResource
Identra_id.identity_governance.lifecycle_workflows_workflows_created_by_mailbox_settings

Fields

The following fields are returned by SELECT queries:

Entity result.

NameDatatypeDescription
archiveFolderstringFolder ID of an archive folder for the user.
automaticRepliesSettingobjectConfiguration settings to automatically notify the sender of an incoming email with a message from the signed-in user. (title: automaticRepliesSetting)
dateFormatstringThe date format for the user's mailbox.
delegateMeetingMessageDeliveryOptionsstringIf the user has a calendar delegate, this specifies whether the delegate, mailbox owner, or both receive meeting messages and meeting responses. The possible values are: sendToDelegateAndInformationToPrincipal, sendToDelegateAndPrincipal, sendToDelegateOnly. (sendToDelegateAndInformationToPrincipal, sendToDelegateAndPrincipal, sendToDelegateOnly) (title: delegateMeetingMessageDeliveryOptions)
languageobjectThe locale information for the user, including the preferred language and country/region. (title: localeInfo)
timeFormatstringThe time format for the user's mailbox.
timeZonestringThe default time zone for the user's mailbox.
userPurposestringThe purpose of the mailbox. Differentiates a mailbox for a single user from a shared mailbox and equipment mailbox in Exchange Online. The possible values are: user, linked, shared, room, equipment, others, unknownFutureValue. Read-only. (user, linked, shared, room, equipment, others, unknownFutureValue) (title: userPurpose)
workingHoursobjectThe days of the week and hours in a specific time zone that the user works. (title: workingHours)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectworkflow_idSettings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve.
updateupdateworkflow_id

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
workflow_idstringThe unique identifier of workflow

SELECT examples

Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve.

SELECT
archiveFolder,
automaticRepliesSetting,
dateFormat,
delegateMeetingMessageDeliveryOptions,
language,
timeFormat,
timeZone,
userPurpose,
workingHours
FROM entra_id.identity_governance.lifecycle_workflows_workflows_created_by_mailbox_settings
WHERE workflow_id = '{{ workflow_id }}' -- required
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.lifecycle_workflows_workflows_created_by_mailbox_settings
SET
archiveFolder = '{{ archiveFolder }}',
automaticRepliesSetting = '{{ automaticRepliesSetting }}',
dateFormat = '{{ dateFormat }}',
delegateMeetingMessageDeliveryOptions = '{{ delegateMeetingMessageDeliveryOptions }}',
language = '{{ language }}',
timeFormat = '{{ timeFormat }}',
timeZone = '{{ timeZone }}',
userPurpose = '{{ userPurpose }}',
workingHours = '{{ workingHours }}',
WHERE
workflow_id = '{{ workflow_id }}' --required
RETURNING
archiveFolder,
automaticRepliesSetting,
dateFormat,
delegateMeetingMessageDeliveryOptions,
language,
timeFormat,
timeZone,
userPurpose,
workingHours;