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.EventStreams.Redeliveries.CreateById( context.TODO(), "id", "event_id", ) }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Unique identifier for the event stream.
26
Unique identifier for the event
Redelivery request accepted.
Was this page helpful?