diff --git a/README.md b/README.md index 01be242..4c935f5 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,15 @@ func run() error { client := hookdeck.NewClient( hookdeck.ClientWithAuthBearer(""), ) + attempts, err := client.Attempts().GetAttempts( + context.TODO(), + &hookdeck.GetAttemptsRequest{ + EventId: hookdeck.String(""), + }, + ) + if err != nil { + return err + } } ```