Skip to content

mordygparency/clickup_api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm npm NPM GitHub last commit

This module is not official ClickUp API.

The clickup_api is a wrap. Used to simplify the calls to the Clickup API.

Issues

Only support API Token. The App token is not supported yet.

To report a issue: Report.

Before reporting the problem, test the call on the API page, if it is on the Clickup API itself, report here.

Install

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js.

Installation is done using the npm install command:

npm install clickup_api

Quick Start

First thing to do is import the module to the scritp.

const clickup_api = require("clickup_api");

Initialize a new object. This object go use the API Token to do all calls.

const Clickup = new clickup_api("access_token");

After that you can call all method of the Clickup class.

To create a task:

var data = {
    "name": "New Task Name",
    "content": "New Task Content",
    "status": "Open"
    };
var info = await Clickup.Tasks.create_task("list_id", data);

console.log(info);

Docs

ClickUp API

The module use all specification of the ClickUp API, pleas visit ClickUp API.

Examples

To view the examples, you can access the github page, in folder testes you will find exemples for all member.

License

MIT

About

No oficial module for ClickUp API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%