Table of Contents

Class BreachedPasswordDetectionClient

Namespace
Auth0.ManagementApi.AttackProtection
Assembly
Auth0.ManagementApi.dll
public class BreachedPasswordDetectionClient : IBreachedPasswordDetectionClient
Inheritance
BreachedPasswordDetectionClient
Implements
Inherited Members
Extension Methods

Methods

GetAsync(RequestOptions?, CancellationToken)

Retrieve details of the Breached Password Detection configuration of your tenant.

public WithRawResponseTask<GetBreachedPasswordDetectionSettingsResponseContent> GetAsync(RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<GetBreachedPasswordDetectionSettingsResponseContent>

Examples

await client.AttackProtection.BreachedPasswordDetection.GetAsync();

UpdateAsync(UpdateBreachedPasswordDetectionSettingsRequestContent, RequestOptions?, CancellationToken)

Update details of the Breached Password Detection configuration of your tenant.

public WithRawResponseTask<UpdateBreachedPasswordDetectionSettingsResponseContent> UpdateAsync(UpdateBreachedPasswordDetectionSettingsRequestContent request, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

request UpdateBreachedPasswordDetectionSettingsRequestContent
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<UpdateBreachedPasswordDetectionSettingsResponseContent>

Examples

await client.AttackProtection.BreachedPasswordDetection.UpdateAsync(
    new UpdateBreachedPasswordDetectionSettingsRequestContent()
);