mmaks17 / intraservice

Golang package for working with Intraservice API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

intraservice

Golang package for working with Intraservice API

Documentation

IntraService API

Usage

	client := intraservice.NewClient(nil, "http://helpdesk.test.com:8888", "aXZhbm92Om15aXZhbm92MjM=")

	///api/task?fields=Id,Name,StatusId
	params := &intraservice.TaskListParams{Fields: "Id,Name,StatusId"}

	tasks, _, _ := client.TaskService.List(params)
	fmt.Printf("Task list:\n%v\n", tasks)

About

Golang package for working with Intraservice API


Languages

Language:Go 100.0%