Visually track, manage and automate your business processes.
ProcessPlan is a process management tool with an API that lets you automate and track workflows. On Pipedream, you can use this API to create intricate automations, which can involve triggering workflows in ProcessPlan, updating tasks, pulling data from process templates, or integrating with other services to streamline operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
processplan: {
type: "app",
app: "processplan",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.processplan.$auth.regional_subdomain}.processplan.com/api/v4/user/me/personal_instance_task/list/pending/count`,
headers: {
"tkn_id": `${this.processplan.$auth.api_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.