Skip to main content

Unofficial Typescript
Height API Wrapper

Powerful package that enables developers to easily integrate and utilize the Height API

import Height from 'height-app-api';
const height = new Height({ secretKey: 'secret_yoursecretkey' });
const uncompletedTasks = await height.tasks.search({
filters: {
status: {
"values": ["backLog", "inProgress"],
}
}
});
return uncompletedTasks;