Thanks to visit codestin.com
Credit goes to github.com

Skip to content

slntopp/whmcs-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WHMCS-GO

WHMCS API bindings for GoLang

Usage

client, err := whmcs.NewClient(urlToWhmcs, username, password, dangerMode)
if err != nil {
	return err
}

login, err := client.Authentication.ValidateLogin(&whmcs.ValidateLoginRequest{
	Email:    whmcs.String("[email protected]"),
	Password: whmcs.String("password"),
})
if err != nil {
	return err
}

Implemented methods

Methods are grouped in the same way as in the official documentation.

  • Authentication
    • ValidateLogin
  • Tickets (all)
  • Support (all)
  • System
    • GetEmailTemplates
    • SendAdminEmail
    • SendEmail
    • TriggerNotificationEvent

About

WHMCS API bindings for GoLang

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages