Golang wrapper for the ActiveCampaign API
go get github.com/mwolf1989/activecampaign
aclient, err := activecampaign.New("<API>, "<Key>")
if err != nil {
panic(err)
}
//Create a new customer
customer, err := aclient.ContactCreate(context.Background(), activecampaign.ContactCreate{
FirstName: "John",
LastName: "Doe",
Email: "[email protected]",
})