Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 437 Bytes

File metadata and controls

27 lines (21 loc) · 437 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const conditionalAccessPolicy = {
    conditions: {
        signInRiskLevels: [
            'high',
            'medium',
            'low'
        ]
    }
};

await client.api('/identity/conditionalAccess/policies/{id}')
	.version('beta')
	.update(conditionalAccessPolicy);