Table of Contents

Class PromptsClient

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
public class PromptsClient : IPromptsClient
Inheritance
PromptsClient
Implements
Inherited Members
Extension Methods

Properties

CustomText

public ICustomTextClient CustomText { get; }

Property Value

ICustomTextClient

Partials

public IPartialsClient Partials { get; }

Property Value

IPartialsClient

Rendering

public IRenderingClient Rendering { get; }

Property Value

IRenderingClient

Methods

GetSettingsAsync(RequestOptions?, CancellationToken)

Retrieve details of the Universal Login configuration of your tenant. This includes the Identifier First Authentication and WebAuthn with Device Biometrics for MFA features.

public WithRawResponseTask<GetSettingsResponseContent> GetSettingsAsync(RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<GetSettingsResponseContent>

Examples

await client.Prompts.GetSettingsAsync();

UpdateSettingsAsync(UpdateSettingsRequestContent, RequestOptions?, CancellationToken)

Update the Universal Login configuration of your tenant. This includes the Identifier First Authentication and WebAuthn with Device Biometrics for MFA features.

public WithRawResponseTask<UpdateSettingsResponseContent> UpdateSettingsAsync(UpdateSettingsRequestContent request, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

request UpdateSettingsRequestContent
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<UpdateSettingsResponseContent>

Examples

await client.Prompts.UpdateSettingsAsync(new UpdateSettingsRequestContent());