Workast

Task and project management app for teams on Slack

Integrate the Workast API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Task from Workast API
Workast + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Task from Workast API
Workast + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Task from Workast API
Workast + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Task from Workast API
Workast + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Task from Workast API
Workast + Formatting
 
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
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Create Task with the Workast API

Creates a task. See docs here

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it

Overview of Workast

The Workast API enables the automation of task management in your projects, allowing the creation, update, and tracking of tasks without leaving the context of your current workflow. With the Workast API on Pipedream, you can tap into this functionality to build seamless integrations and automate repetitive actions, such as syncing tasks across multiple platforms, generating reports, or triggering reminders and notifications based on specific task events.

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 Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})