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.Users.FederatedConnectionsTokensets.Delete( context.TODO(), "id", "tokenset_id", ) }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Id of the user that owns the tokenset
300
The tokenset id
36
Tokenset successfully deleted.
Was this page helpful?