Skip to content

healthimation/go-getresponse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

go-getresponse

A golang API client for GetResponse V3

Supported APIs

Usage

go get github.com/healthimation/go-getresponse/getresponse
import (
    "log"
    "time"
    "context"

    "github.com/healthimation/go-getresponse/getresponse"
)

func main() {
    timeout := 5 * time.Second
    client := getresponse.NewClient("my get response api key", timeout)

    campaignID := "123"
    err := client.(context.Background(), "[email protected]", "John Smith", nil, campaignID, nil, nil)
    if err != nil {
        log.Printf("Error creating contact in GR: %s", err.Error())
    }
}

About

A golang API client for apidocs.getresponse.com/v3

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages