メインコンテンツへスキップ
GET
https://{tenantDomain}/api/v2
/
branding
Go
package example

import (
    context "context"

    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>",
        ),
    )
    client.Branding.Get(
        context.TODO(),
    )
}
{
  "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>"
}

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

レスポンス

ブランディング設定を正常に取得しました。

colors
object

カスタムカラーの設定。

favicon_url
string<strict-https-uri>

favicon の URL。HTTPS を使用する必要があります。

font
object

カスタムフォントの設定。

identifiers
object

識別子入力の表示設定。

logo_url
string<strict-https-uri>

ロゴの URL。HTTPS を使用する必要があります。