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
Partials
public IPartialsClient Partials { get; }
Property Value
Rendering
public IRenderingClient Rendering { get; }
Property Value
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
optionsRequestOptionscancellationTokenCancellationToken
Returns
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
requestUpdateSettingsRequestContentoptionsRequestOptionscancellationTokenCancellationToken
Returns
Examples
await client.Prompts.UpdateSettingsAsync(new UpdateSettingsRequestContent());