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.Organizations.ClientGrants.Delete( context.TODO(), "id", "grant_id", ) }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Organization identifier.
50
The Client Grant ID to remove from the organization
The Client Grant was removed from the Organization.
Cette page vous a-t-elle été utile ?