with npm and ClickUp?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Creates a chat view comment. See the documentation in Comments / Create Chat View Comment section.
Creates a new checklist in a task. See the documentation in Checklists / Create Checklist section.
Creates a new item in a checklist. See the documentation in Checklists / Create Checklist Item section.
Creates a new folder. See the documentation in Folders / Create Folder section.
Creates a new list. See the documentation in Lists / Create List section.
The ClickUp API on Pipedream allows you to automate tasks, sync data across various platforms, and construct custom workflows to streamline project management. By leveraging the API, you can create tasks, update statuses, and manipulate lists or spaces programmatically. Whether you're looking to integrate ClickUp with your CRM, coordinate cross-functional teams, or just manage notifications, Pipedream's serverless platform lets you build scalable, event-driven processes with minimal fuss.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clickup: {
type: "app",
app: "clickup",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.clickup.com/api/v2/user`,
headers: {
"content-type": `application/json`,
"Authorization": `${this.clickup.$auth.oauth_access_token}`,
},
})
},
})