Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Install and initialize the SuprSend Go SDK using your workspace key and secret to start sending notifications, managing users, and triggering workflows.
suprsend-go
go get github.com/suprsend/suprsend-go
package main import ( "log" suprsend "github.com/suprsend/suprsend-go" ) // Initialize SDK func main() { opts := []suprsend.ClientOption{ // suprsend.WithDebug(true), } suprClient, err := suprsend.NewClient("__workspace_key__", "__workspace_secret__", opts...) if err != nil { log.Println(err) } }
Was this page helpful?
Contact support