go-smartsheet is a go client library for the Smartsheet 2.0 API.
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)
}
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request