Skip to content

gorazio/go-clickup

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-clickup

Go Reference

This is unofficial Go client library for ClickUp.

Features

  • Create space, folder, list, task and more.
  • Get Space, folder, list, task and more.

This package cover almost ClickUp API. For APIs that are not supported, see Progress.

API doc

https://clickup.com/api

Requirements

  • Go >= 1.16

Installation

It is go gettable

go get github.com/gorazio/go-clickup

Example

mkdir my-clickup-app && cd my-clickup-app

cat > go.mod <<-END
  module my-clickup-app

  require github.com/gorazio/go-clickup main
END

cat > main.go <<-END
  package main

  import (
	  "context"

	  "github.com/gorazio/go-clickup/clickup"
  )

  func main() {
	  client := clickup.NewClient(nil, "api_key")

	  teams, _, _ := client.Teams.GetTeams(context.Background())
	  println(teams[0].Name)

	  for _, member := range teams[0].Members {
		  println(member.User.ID)
		  println(member.User.Username)
	  }
    println(teams[0].ID)

	  spaces, _, _ := client.Spaces.GetSpaces(context.Background(), teams[0].ID)
	  println(spaces[0].ID)

	  space, _, _ := client.Spaces.GetSpace(context.Background(), spaces[0].ID)
	  println(space.Name)
  }
END

go mod tidy
go run main.go

Code structure

The code structure of this package was inspired by google/go-github and andygrunwald/go-jira. There is one main part (the client).

Contribution

Bug reports and pull requests are welcome.

Contribution, in any kind of way, is highly welcome! It doesn't matter if you are not able to write code. Creating issues or holding talks and help other people to use go-clickup is contribution, too! A few examples:

  • Correct typos in the README / documentation
  • Reporting bugs
  • Implement a new feature or endpoint
  • Sharing the love of go-clickup and help people to get use to it
  • Writing test code

If you are new to pull requests, checkout Collaborating on projects using issues and pull requests / Creating a pull request.

Progress

  • Rate Limit
  • Error Handling
  • Attachments
    • Create Task Attachment
  • Authorization
    • Get Access Token
    • Get Authorized User
    • Get Authorized Teams
  • Checklists
    • Create Checklist
    • Edit Checklist
    • Delete Checklist
    • Create Checklist Item
    • Edit Checklist Item
    • Delete Checklist Item
  • Comments
    • Create Task Comment
    • Create Chat View Comment
    • Create List Comment
    • Get Task Comment
    • Get Chat View Comment
    • Get List Comment
    • Update Comment
    • Delete Comment
  • Custom Fields
    • Get Accessible Custom Fields
    • Set Custom Field Value
    • Remove Custom Field Value
  • Dependencies
    • Add Dependency
    • Delete Dependency
    • Add Task Link
    • Delete Task Link
  • Folders
    • Create Folder
    • Update Folder
    • Delete Folder
    • Get Folders
    • Get Folder
  • Goals
    • Create Goal
    • Update Goal
    • Delete Goal
    • Get Goals
    • Get Goal
    • Create Key Result
    • Edit Key Result
    • Delete Key Result
  • Guests (only available to enterprise teams)
    • Invite Guest To Workspace
    • Edit Guest On Workspace
    • Remove Guest From Workspace
    • Get Guest
    • Add Guest To Task
    • Remove Guest From Task
    • Add Guest To List
    • Remove Guest From List
    • Add Guest To Folder
    • Remove Guest From Folder
  • Lists
    • Create List
    • Create Folderless List
    • Update List
    • Delete List
    • Get Lists
    • Get Folderless Lists
    • Get List
    • Add Task To List
    • Remove Task From List
  • Members
    • Get Task Members
    • Get List Members
  • Shared Hierarchy
    • Shared Hierarchy
  • Spaces
    • Create Space
    • Update Space
    • Delete Space
    • Get Spaces
    • Get Space
  • Tags
    • Get Space Tags
    • Create Space Tag
    • Edit Space tag
    • Delete Space Tag
    • Add Tag To Task
    • Remove Tag From Task
  • Tasks
    • Create Task
    • Update task
    • Delete Task
    • Get Tasks
    • Get Task
    • Get Filtered Team Tasks
    • Get Task's Time in Status
    • Get Bulk Tasks' Time in Status
  • Task Templates
    • Get Task Templates
    • Create Task From Template
  • Teams
    • Get Teams
  • Time Tracking 2.0
    • Get time entries within a date range
    • Get singular time entry
    • Get time entry history
    • Get running time entry
    • Create a time entry
    • Remove tags from time entries
    • Get all tags from time entries
    • Add tags from time entries
    • Change tag names from time entries
    • Start a time Entry
    • Stop a time Entry
    • Delete a time Entry
    • Update a time Entry
  • Users (only available to enterprise teams)
    • Invite User To Workspace
    • Edit User On Workspace
    • Remove User From Workspace
    • Get User
  • Views
    • Create Team View
    • Create Space View
    • Create Folder View
    • Create List View
    • Get Team Views
    • Get Space Views
    • Get Folder Views
    • Get List Views
    • Get View
    • Get View Tasks
    • Update View
    • Delete View
  • Webhooks
    • Create Webhook
    • Update Webhook
    • Delete Webhook
    • Get Webhooks

License

This project is released under the terms of the MIT license.

About

Clickup go client

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 99.9%
  • Makefile 0.1%