with ClickUp and goQR.me?
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
goqr_me: {
type: "app",
app: "goqr_me",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.qrserver.com/v1/create-qr-code/`,
params: {
data: `${this.goqr_me.$auth.data}`,
size: `100x100`,
},
})
},
})