sbshah97 / go-smartsheet

Smartsheet golang client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GoDoc Go Report Card License codecov

go-smartsheet

go-smartsheet is a go client library for the Smartsheet 2.0 API.

Using client library

package main

import (
	"fmt"
	"github.com/william20111/go-smartsheet/pkg/smartsheet"
	"log"
)

func main() {
	options := smartsheet.ClientOptions{}
	client := smartsheet.NewSmartsheetClient(&options)
	sheet, err := client.GetSheet("1234567891011")
	if err != nil {
		log.Fatal(err)
	}
	fmt.Println(sheet.Rows)
}

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

License

Apache 2

About

Smartsheet golang client

License:Apache License 2.0


Languages

Language:Go 100.0%