with Airfocus and Zenkit?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airfocus: {
type: "app",
app: "airfocus",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.airfocus.com/api/fields/types`,
headers: {
Authorization: `Bearer ${this.airfocus.$auth.api_key}`,
"user-agent": `pipedream/1`,
},
})
},
})
Zenkit is a versatile project management and collaboration tool that lets you organize your data and build custom workflows to streamline your business and personal projects. With the Zenkit API, you can create, read, update, and delete items in your collections, manage users, and automate notifications or actions based on changes within your datasets. Combining Zenkit's API with Pipedream's capability unlocks powerful automation opportunities, allowing you to interconnect your project data with numerous other services and internal systems to enhance productivity, data consistency, and event-driven processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zenkit: {
type: "app",
app: "zenkit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://zenkit.com/api/v1/users/me`,
headers: {
Authorization: `Bearer ${this.zenkit.$auth.oauth_access_token}`,
},
})
},
})