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
- Host: GitHub
- URL: https://github.com/hliyan/guacamole
- Owner: hliyan
- Created: 2020-05-09T03:30:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-25T07:08:59.000Z (almost 6 years ago)
- Last Synced: 2025-03-23T19:44:40.107Z (about 1 year ago)
- Topics: clickup, clickup-api, google-apps-script, google-sheets, javascript
- Language: JavaScript
- Size: 17.6 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.