Edit

Share via


Update fraudProtectionProvider

Namespace: microsoft.graph

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

This API is available in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) RiskPreventionProviders.ReadWrite.All Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application Not supported. Not supported.

Important

For delegated access using work or school accounts, the admin must be assigned a supported Microsoft Entra role or a custom role that grants the permissions required for this operation. This operation supports the following built-in roles, which provide only the least privilege necessary:

  • External ID User Flow Administrator
  • Application Administrator
  • Security Administrator

HTTP request

PATCH /identity/riskPrevention/fraudProtectionProviders/{fraudProtectionProviderId}

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json. Required.

Request body

In the request body, supply only the values for properties to update. Existing properties that aren't included in the request body maintain their previous values or are recalculated based on changes to other property values.

The following table specifies the properties that can be updated.

You must specify the @odata.type property and the value of the fraudProtectionProvider object type to update. For example, "@odata.type": "#microsoft.graph.arkoseFraudProtectionProvider".

Property Type Description
appId String Unique identifier for an individual application. You can retrieve this from the HUMAN Security admin console or request it from your HUMAN Security Customer Success Manager. Supported for HUMAN Security only. Optional.
clientSubDomain String Used to invoke the Arkose service from the client application. Request from your Arkose Customer Success Manager or use the default client-api value. Supported for Arkose only. Optional.
displayName String The display name of the fraud protection provider configuration. Supported for all providers. Optional.
privateKey String The private key available on the Arkose Portal. Contact your Arkose Customer Success Manager for assistance with your keys. Supported for Arkose only. Optional.
publicKey String The public key available on the Arkose Portal. Contact your Arkose Customer Success Manager for assistance with your keys. Supported for Arkose only. Optional.
serverToken String Unique identifier used to authenticate API calls between the Server side integration and the HUMAN platform. You can retrieve this from the HUMAN Security admin console or request it from your HUMAN Security Customer Success Manager. Supported for HUMAN Security only. Optional.
verifySubDomain String Used to invoke the Arkose service from the Microsoft authentication server. Request from your Arkose Customer Success Manager or use the default verify-api value. Supported for Arkose only. Optional.

Response

If successful, this method returns a 204 No Content response code.

Examples

Request

The following example shows a request to update Arkose fraud protection provider.

PATCH https://graph.microsoft.com/v1.0/identity/riskPrevention/fraudProtectionProviders/9826466a-5275-438d-98e1-f3df6470a4b5
Content-Type: application/json

{
    "@odata.type": "#microsoft.graph.arkoseFraudProtectionProvider",
    "displayName": "Arkose Sign-Up Protection Updated",
}

Response

The following example shows the response.

HTTP/1.1 204 No Content