Node package manager
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 new activity or task within Zixflow. See the documentation
Deletes an existing activity or task from Zixflow. See the documentation
Updates an existing activity or task in Zixflow. See the documentation
The Zixflow API allows for the automation of business process workflows, enabling the creation, management, and optimization of tasks across various functions. Utilizing this API in Pipedream, one can automate repetitive tasks, integrate with other services, and trigger actions based on specific conditions, helping to streamline business operations and increase efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zixflow: {
type: "app",
app: "zixflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.zixflow.com/api/v1/workspace-members`,
headers: {
Authorization: `Bearer ${this.zixflow.$auth.api_key}`,
},
})
},
})