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.Keys.Encryption.Rekey( context.TODO(), ) }
Perform rekeying operation on the key hierarchy.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The key hierarchy was successfully rekeyed.
Was this page helpful?