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.Flows.Executions.Delete( context.TODO(), "flow_id", "execution_id", ) }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Flows id
30
Flow execution identifier
Flow execution successfully deleted.
Was this page helpful?