Giter Club home page Giter Club logo

clickup_api's Introduction

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

clickup_api's People

Contributors

lpg2709 avatar leonardo665 avatar roushnoinc avatar roushhour avatar csouza1995 avatar jp4tey avatar accountantkev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.