go-bugsnag-api is a draft implementation of a Go client library for accessing the Bugsnag data access API inspired by go-github.
go get github.com/mikeewhite/go-bugsnag-api
import "github.com/mikeewhite/go-bugsnag-api/bugsnag"
client := bugsnag.NewClient(nil)
// List all organizations for the 'current user'
opts := &bugsnag.ListCurrentUsersOrganizationsOptions{
Admin: bugsnag.Bool(true),
}
orgs, _, err := client.ListCurrentUsersOrganizations(ctx, opts)
- Implement Errors API
- Implement Integrations API
- Implement Organizations API
- Implment Projects API