Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 579 Bytes

File metadata and controls

25 lines (19 loc) · 579 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const lifecycleManagementSettings = {
    '@odata.context': 'https://graph.microsoft.com/v1.0/$metadata#identityGovernance/lifecycleWorkflows/settings/$entity',
    workflowScheduleIntervalInHours: 3,
    emailSettings: {
        senderDomain: 'ContosoIndustries.net',
        useCompanyBranding: true
  }
};

await client.api('/identityGovernance/lifecycleWorkflows/settings')
	.update(lifecycleManagementSettings);