KanbanFlow

KanbanFlow is a Lean project management tool allowing real-time collaboration between team members. Supports the Pomodoro technique for time tracking.

Integrate the KanbanFlow API with the DigitalOcean Spaces API

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

List Files with DigitalOcean Spaces API on Task Created from KanbanFlow API
KanbanFlow + DigitalOcean Spaces
 
Try it
Create Task with KanbanFlow API on File Deleted from DigitalOcean Spaces API
DigitalOcean Spaces + KanbanFlow
 
Try it
Create Task with KanbanFlow API on New File Uploaded from DigitalOcean Spaces API
DigitalOcean Spaces + KanbanFlow
 
Try it
Delete Files with DigitalOcean Spaces API on Task Created from KanbanFlow API
KanbanFlow + DigitalOcean Spaces
 
Try it
Delete Files with DigitalOcean Spaces API on Task Moved from KanbanFlow API
KanbanFlow + DigitalOcean Spaces
 
Try it
Task Created from the KanbanFlow API

Emit new event when a new task is created

 
Try it
File Deleted from the DigitalOcean Spaces API

Emit new event when a file is deleted from a DigitalOcean Spaces bucket

 
Try it
Task Moved from the KanbanFlow API

Emit new event when a task is moved

 
Try it
New File Uploaded from the DigitalOcean Spaces API

Emit new event when a file is uploaded to a DigitalOcean Spaces bucket

 
Try it
Create Task with the KanbanFlow API

Create a task (docs available on board settings)

 
Try it
Delete Files with the DigitalOcean Spaces API

Delete files in a bucket. See the docs.

 
Try it
List Files with the DigitalOcean Spaces API

List files in a bucket. See the docs.

 
Try it
Upload File /tmp with the DigitalOcean Spaces API

Accepts a file path starting from /tmp, then uploads as a file to DigitalOcean Spaces. See the docs.

 
Try it
Upload File Base64 with the DigitalOcean Spaces API

Accepts a base64-encoded string and a filename, then uploads as a file to DigitalOcean Spaces. See the docs.

 
Try it

Overview of KanbanFlow

The KanbanFlow API unlocks the potential for creating customized, automated workflows to enhance productivity and streamline task management. By tapping into this API via Pipedream, developers can craft serverless functions that interact with KanbanFlow boards, tasks, users, and time tracking features. These automations can range from syncing tasks across platforms to triggering notifications based on task updates.

Connect KanbanFlow

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: {
    kanbanflow: {
      type: "app",
      app: "kanbanflow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://kanbanflow.com/api/v1/users`,
      params: {
        apiToken: `${this.kanbanflow.$auth.api_token}`,
      },
    })
  },
})

Overview of DigitalOcean Spaces

DigitalOcean Spaces API permits you to manage object storage, allowing for the storage and serving of massive amounts of data. This API is great for backing up, archiving, and providing public access to data or assets. On Pipedream, you can use this API to automate file operations like uploads, downloads, and deletions, as well as manage permissions and metadata. You can integrate it with other services for end-to-end workflow automation.

Connect DigitalOcean Spaces

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { S3 } from "@aws-sdk/client-s3";
import { ListBucketsCommand  } from "@aws-sdk/client-s3";

export default defineComponent({
  props: {
    digitalocean_spaces: {
      type: "app",
      app: "digitalocean_spaces"
    }
  },
  async run({ steps, $ }) {
    console.log(this.digitalocean_spaces.$auth)
    const s3Client = new S3({
        forcePathStyle: false, // Configures to use subdomain/virtual calling format.
        endpoint: `https://${this.digitalocean_spaces.$auth.region}.digitaloceanspaces.com`,
        region: "us-east-1",
        credentials: {
          accessKeyId: this.digitalocean_spaces.$auth.key,
          secretAccessKey: this.digitalocean_spaces.$auth.secret
        }
    });

    const data = await s3Client.send(new ListBucketsCommand({}));
    return data.Buckets;
  },
})