Skip to content

satyamjain28/go-zen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-zen

API Wrapper for Zendesk in golang (Still work in progress)

Functions implemented

All the function are implemented by the Access struct.

Users
- GetUser()
- CreateUser()
- ChangePassword()
Tickets
- GetTicket()
- ListTickets()
- ListTicketsByExternalID()
- ListTicketsByID()
- DeleteTicket()
Basic Usage

go get github.com/satyamjain28/go-zen/pkg

package main
import (
    "github.com/satyamjain28/go-zen/pkg"
    "log"
)
func main(){
	a := pkg.Access{UserName: "username@exmaple.com", Password: "password", Domain: "acme"}
	ticket, _ := a.GetTicket(1)
	log.Println(ticket.ID,ticket.Description,ticket.Subject)
}

About

API Wrapper for Zendesk in golang

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages