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.Guardian.Factors.List(
context.TODO(),
)
}[
{
"enabled": true,
"trial_expired": true,
"name": "sms"
}
]Retrieve details of all multi-factor authentication factors associated with your tenant.
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.Guardian.Factors.List(
context.TODO(),
)
}[
{
"enabled": true,
"trial_expired": true,
"name": "sms"
}
]Documentation Index
Fetch the complete documentation index at: https://auth0-chore-sdk-version-update-20260521.mintlify.app/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.
Factors successfully retrieved.
Whether this factor is enabled (true) or disabled (false).
Whether trial limits have been exceeded.
Factor name. Can be sms, push-notification, email, duo otp webauthn-roaming, webauthn-platform, or recovery-code.
push-notification, sms, email, duo, otp, webauthn-roaming, webauthn-platform, recovery-code 1このページは役に立ちましたか?