Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Go
package example import ( context "context" management "github.com/auth0/go-auth0/management/management" client "github.com/auth0/go-auth0/management/management/client" option "github.com/auth0/go-auth0/management/management/option" ) func do() { client := client.NewClient( option.WithToken( "<token>", ), ) request := &management.UpdateBrandingRequestContent{} client.Branding.Update( context.TODO(), request, ) }
{ "colors": { "page_background": "<string>", "primary": "<string>" }, "favicon_url": "<string>", "font": { "url": "<string>" }, "identifiers": { "login_display": "unified", "otp_autocomplete": true, "phone_display": { "formatting": "international", "masking": "mask_digits" } }, "logo_url": "<string>" }
ブランディング設定を更新します。
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ブランディング設定
カスタム カラーの設定。
Show child attributes
ファビコンの URL。HTTPS を使用する必要があります。
カスタム フォントの設定。
識別子入力の表示設定。
ロゴの URL。HTTPS を使用する必要があります。
ブランディング設定を正常に更新しました。
カスタムカラーの設定。
カスタムフォントの設定。