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
cancellationToken
CancellationTokenThe cancellation token to cancel operation.
Returns
GetAsync(CancellationToken)
Retrieves branding settings for a tenant.
Task<Branding> GetAsync(CancellationToken cancellationToken = default)
Parameters
cancellationToken
CancellationTokenThe cancellation token to cancel operation.
Returns
GetUniversalLoginTemplateAsync(CancellationToken)
Retrieves the template for the New Universal Login Experience.
Task<UniversalLoginTemplate> GetUniversalLoginTemplateAsync(CancellationToken cancellationToken = default)
Parameters
cancellationToken
CancellationTokenThe 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
request
UniversalLoginTemplateUpdateRequestThe UniversalLoginTemplateUpdateRequest containing details of the template to set.
cancellationToken
CancellationTokenThe 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
request
BrandingUpdateRequestA BrandingUpdateRequest containing the branding information to update.
cancellationToken
CancellationTokenThe cancellation token to cancel operation.