An open API service indexing awesome lists of open source software.

https://github.com/hliyan/guacamole

A Google Apps - Clickup API Integeration
https://github.com/hliyan/guacamole

clickup clickup-api google-apps-script google-sheets javascript

Last synced: about 1 year ago
JSON representation

A Google Apps - Clickup API Integeration

Awesome Lists containing this project

README

          

# Guacamole

Google AppScript for the Clickup API.

# Contents

## sheets.js

This is an old-fashioned jQuery-like Google AppScript API for cell access in Google Sheets. Optimized for ease of use by non-developers:

E.g.
```
$('sheet1')
$('sheet1', 'A1')
$('sheet1', 1, 2)
$('sheet1', 1, 2, 10, 10);
$.sheet = $('sheet');
$(1, 2)
$(1, 2, 10, 10)
```

## http.js

A thin wrapper over Google AppScript `UrlFetchApp.fetch`.

E.g.
```
let data = $http('www.something.com', {Authorization: 'token', method: 'get'}).data('json');
```

## clickup.js

A fluent Google AppScript wrapper for the Clickup API.

E.g.
```
$clickup
.auth('key')
.team('Different')
.space('Product - 2020')
.folder('TDTU')
.list('Apr 27 - May 08')
.tasks();
console.log($clickup.current.tasks);
```

## Code.js

A sample implementation.