Interface IBrandingClient
- Namespace
- Auth0.ManagementApi.Clients
- Assembly
- Auth0.ManagementApi.dll
public interface IBrandingClient
Methods
DeleteUniversalLoginTemplateAsync(CancellationToken)
Delete the template for the New Universal Login Experience
Task DeleteUniversalLoginTemplateAsync(CancellationToken cancellationToken = default)
Parameters
cancellationTokenCancellationTokenThe cancellation token to cancel operation.
Returns
GetAsync(CancellationToken)
Retrieves branding settings for a tenant.
Task<Branding> GetAsync(CancellationToken cancellationToken = default)
Parameters
cancellationTokenCancellationTokenThe cancellation token to cancel operation.
Returns
GetUniversalLoginTemplateAsync(CancellationToken)
Retrieves the template for the New Universal Login Experience.
Task<UniversalLoginTemplate> GetUniversalLoginTemplateAsync(CancellationToken cancellationToken = default)
Parameters
cancellationTokenCancellationTokenThe cancellation token to cancel operation.
Returns
- Task<UniversalLoginTemplate>
The UniversalLoginTemplate for the new universal login experience.
SetUniversalLoginTemplateAsync(UniversalLoginTemplateUpdateRequest, CancellationToken)
Sets the template for the New Universal Login Experience.
Task<UniversalLoginTemplate> SetUniversalLoginTemplateAsync(UniversalLoginTemplateUpdateRequest request, CancellationToken cancellationToken = default)
Parameters
requestUniversalLoginTemplateUpdateRequestThe UniversalLoginTemplateUpdateRequest containing details of the template to set.
cancellationTokenCancellationTokenThe cancellation token to cancel operation.
Returns
- Task<UniversalLoginTemplate>
The newly updated UniversalLoginTemplate.
UpdateAsync(BrandingUpdateRequest, CancellationToken)
s Updates the branding for a tenant.
Task<Branding> UpdateAsync(BrandingUpdateRequest request, CancellationToken cancellationToken = default)
Parameters
requestBrandingUpdateRequestA BrandingUpdateRequest containing the branding information to update.
cancellationTokenCancellationTokenThe cancellation token to cancel operation.