Table of Contents

Class BrandingClient

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
public class BrandingClient : IBrandingClient
Inheritance
BrandingClient
Implements
Inherited Members
Extension Methods

Properties

Phone

public IPhoneClient Phone { get; }

Property Value

IPhoneClient

Templates

public ITemplatesClient Templates { get; }

Property Value

ITemplatesClient

Themes

public IThemesClient Themes { get; }

Property Value

IThemesClient

Methods

GetAsync(RequestOptions?, CancellationToken)

Retrieve branding settings.

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

Parameters

options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<GetBrandingResponseContent>

Examples

await client.Branding.GetAsync();

UpdateAsync(UpdateBrandingRequestContent, RequestOptions?, CancellationToken)

Update branding settings.

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

Parameters

request UpdateBrandingRequestContent
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<UpdateBrandingResponseContent>

Examples

await client.Branding.UpdateAsync(new UpdateBrandingRequestContent());