Skip to main content

risk_prevention

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

Overview

Namerisk_prevention
TypeResource
Identra_id.identity.risk_prevention

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
fraudProtectionProvidersarrayRepresents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
webApplicationFirewallProvidersarrayCollection of WAF provider configurations registered in the External ID tenant.
webApplicationFirewallVerificationsarrayCollection of verification operations performed for domains or hosts with WAF providers registered in the External ID tenant.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectRepresents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.
updateupdate
deletedeleteIf-Match

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
If-MatchstringETag

SELECT examples

Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.

SELECT
fraudProtectionProviders,
webApplicationFirewallProviders,
webApplicationFirewallVerifications
FROM entra_id.identity.risk_prevention
;

UPDATE examples

No description available.

UPDATE entra_id.identity.risk_prevention
SET
fraudProtectionProviders = '{{ fraudProtectionProviders }}',
webApplicationFirewallProviders = '{{ webApplicationFirewallProviders }}',
webApplicationFirewallVerifications = '{{ webApplicationFirewallVerifications }}'
RETURNING
fraudProtectionProviders,
webApplicationFirewallProviders,
webApplicationFirewallVerifications;

DELETE examples

No description available.

DELETE FROM entra_id.identity.risk_prevention
WHERE If-Match = '{{ If-Match }}'
;