Skip to main content

risk_prevention_fraud_protection_providers

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

Overview

Namerisk_prevention_fraud_protection_providers
TypeResource
Identra_id.identity.risk_prevention_fraud_protection_providers

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
displayNamestringThe display name of the fraud protection provider configuration.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectfraud_protection_provider_idRead the properties and relationships of fraudProtectionProvider object. The following derived types are currently supported.
listselectGet a list of the fraudProtectionProvider object and their properties. The following derived types are supported:
insertinsertCreate a new fraudProtectionProvider object. You can create one of the following subtypes that are derived from fraudProtectionProvider.
updateupdatefraud_protection_provider_idUpdate the properties of a fraudProtectionProvider object. The following derived types are currently supported.
deletedeletefraud_protection_provider_idIf-MatchDelete a fraudProtectionProvider object.

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
fraud_protection_provider_idstringThe unique identifier of fraudProtectionProvider
If-MatchstringETag

SELECT examples

Read the properties and relationships of fraudProtectionProvider object. The following derived types are currently supported.

SELECT
id,
displayName
FROM entra_id.identity.risk_prevention_fraud_protection_providers
WHERE fraud_protection_provider_id = '{{ fraud_protection_provider_id }}' -- required
;

INSERT examples

Create a new fraudProtectionProvider object. You can create one of the following subtypes that are derived from fraudProtectionProvider.

INSERT INTO entra_id.identity.risk_prevention_fraud_protection_providers (
id,
displayName
)
SELECT
'{{ id }}',
'{{ displayName }}'
RETURNING
id,
displayName
;

UPDATE examples

Update the properties of a fraudProtectionProvider object. The following derived types are currently supported.

UPDATE entra_id.identity.risk_prevention_fraud_protection_providers
SET
id = '{{ id }}',
displayName = '{{ displayName }}'
WHERE
fraud_protection_provider_id = '{{ fraud_protection_provider_id }}' --required
RETURNING
id,
displayName;

DELETE examples

Delete a fraudProtectionProvider object.

DELETE FROM entra_id.identity.risk_prevention_fraud_protection_providers
WHERE fraud_protection_provider_id = '{{ fraud_protection_provider_id }}' --required
AND If-Match = '{{ If-Match }}'
;