Workast

Task and project management app for teams on Slack

Go to site
Explore
/
Apps
/
Workast

Workast API Integrations

Build and run workflows using the Workast API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

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.
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}`,
      },
    })
  },
})
Create Space with Workast API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Workast
 
Try it
Send Message (Advanced) with Discord Webhook API on New Task from Workast API
Workast + Discord Webhook
 
Try it
Create Space with Workast API on New Message in Channel from Discord Bot API
Discord Bot + Workast
 
Try it
Create Space with Workast API on New Submission from Typeform API
Typeform + Workast
 
Try it
Create Space with Workast API on Custom Events from Zoom API
Zoom + Workast
 
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
Create Task with the Workast API

Creates a task. See docs here

 
Try it

Authentication

Workast uses API keys for authentication. When you connect your Workast account, Pipedream securely stores the keys so you can easily authenticate to Workast APIs in both code and no-code steps.

To retrieve your API key:

  1. Navigate to your Workast account and sign in
  2. In Chrome you need to open the Developers tools (View -> Developer -> Developer tools)
  3. Go to the Application tab
  4. Navigate to cookies and you will find a cookie called token
  5. Remember to URL decode the token before you use it with a tool like https://www.urldecoder.org/