Management API
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.Guardian.Factors.Duo.Settings.Get( context.TODO(), ) }
{ "ikey": "<string>", "skey": "<string>", "host": "<string>" }
Retrieves the DUO account and factor configuration.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
DUO settings successfully retrieved.
10000
Was this page helpful?