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>",
),
)
client.SelfServiceProfiles.CustomText.List(
context.TODO(),
"id",
management.SelfServiceProfileCustomTextLanguageEnum(
"en",
),
management.SelfServiceProfileCustomTextPageEnum(
"get-started",
),
)
}{}Retrieves text customizations for a given self-service profile, language and Self-Service Enterprise Configuration flow page.
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>",
),
)
client.SelfServiceProfiles.CustomText.List(
context.TODO(),
"id",
management.SelfServiceProfileCustomTextLanguageEnum(
"en",
),
management.SelfServiceProfileCustomTextPageEnum(
"get-started",
),
)
}{}Documentation Index
Fetch the complete documentation index at: https://auth0.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The id of the self-service profile.
The language of the custom text.
en The page where the custom text is shown.
get-started Retrieved custom text.
The list of custom text keys and values.
Cette page vous a-t-elle été utile ?