Workast

Task and project management app for teams on Slack

Integrate the Workast API with the Node API

Setup the Workast API trigger to run a workflow which integrates with the Node API. Pipedream's integration platform allows you to integrate Workast and Node remarkably fast. Free for developers.

Run Node Code with Node API on New Task from Workast API
Workast + Node
 
Try it
New Task from the Workast API

Emit new event for each new task

 
Try it
Create Space with the Workast API

Creates a space. See docs here

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it
Create Task with the Workast API

Creates a task. See docs here

 
Try it

Overview of Workast

The Workast API allows developers to create powerful applications for
streamlining the process of task management. With the Workast API, you can
build applications that will help users automate their personal and
professional task management workflow.

Here are some examples of what you can build using the Workast API:

  • Task Management Systems: You can build applications to help users manage
    their tasks, reminders, and subtasks.
  • Collaboration Platforms: With the Workast API, you can create an application
    to help teams collaborate on tasks and share updates in real-time.
  • Project Dashboards: You can create an application that will help users
    visualize the progress of their projects.
  • Scheduling: Applications that integrate with calendars, to help users create
    and manage their schedules.
  • Reporting: With the Workast API, you can build application with reporting
    capabilities, to help users track their task progress and keep track of their
    team’s progress.
  • Database Management: You can create an application to help users store and
    organize their data.
  • Time Tracking: Create an application that helps users keep track of their
    time and track the progress of their tasks.

Connect Workast

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    workast: {
      type: "app",
      app: "workast",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.todobot.io/user/me`,
      headers: {
        Authorization: `Bearer ${this.workast.$auth.api_token}`,
      },
    })
  },
})

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.