Skip to main content
GET
https://{tenantDomain}/api/v2
/
branding
/
templates
/
universal-login
Go
package example

import (
    client "github.com/auth0/go-auth0/management/client"
    option "github.com/auth0/go-auth0/management/option"
    context "context"
)

func do() () {
    client := client.NewClient(
        option.WithToken(
            "<token>",
        ),
    )
    client.Branding.Templates.GetUniversalLogin(
        context.TODO(),
    )
}
{
  "body": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

Template successfully retrieved.

body
string

The custom page template for the New Universal Login Experience