Trello

Trello is the flexible work management tool that empowers all teams to plan, track, and accomplish their work, their way.

Integrate the Trello API with the Dropbox API

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

Add a Member to a Card with Trello API on New File from Dropbox API
Dropbox + Trello
 
Try it
Add Attachment to Card via URL with Trello API on New File from Dropbox API
Dropbox + Trello
 
Try it
Add Attachment to Card via URL with Trello API on New File from Dropbox API
Dropbox + Trello
 
Try it
Add Existing Label to Card with Trello API on New File from Dropbox API
Dropbox + Trello
 
Try it
Add Existing Label to Card with Trello API on New File from Dropbox API
Dropbox + Trello
 
Try it
Card Moved (Instant) from the Trello API

Emit new event each time a card is moved to a list.

 
Try it
New File from the Dropbox API

Emit new event when a new file is added to your account or a specific folder. Make sure the number of files/folders in the watched folder does not exceed 4000.

 
Try it
New Card (Instant) from the Trello API

Emit new event for each new Trello card on a board.

 
Try it
New Folder from the Dropbox API

Emit new event when a new folder is created. Make sure the number of files/folders in the watched folder does not exceed 4000.

 
Try it
Card Updates (Instant) from the Trello API

Emit new event for each update to a Trello card.

 
Try it
Create a Text File with the Dropbox API

Creates a brand new text file from plain text content you specify. See docs here

 
Try it
Create folder with the Dropbox API

Create a folder. See docs here

 
Try it
Create or Append to a Text File with the Dropbox API

Adds a new line to an existing text file, or creates a file if it doesn't exist. See docs here

 
Try it
Create/Update a Share Link with the Dropbox API

Creates or updates a public share link to the file or folder (It allows to share the file or folder with anyone). See docs here

 
Try it
Delete a File/Folder with the Dropbox API

Permanently removes a file/folder from the server. See docs here

 
Try it

Overview of Trello

Trello's API lets you craft workflows around managing boards, lists, cards, and users. With Pipedream, you can automate Trello tasks, like syncing cards with external databases, updating checklists, and posting notifications to other platforms. It enables seamless connection with other apps, fostering productivity by automating routine board operations, card management, and team notifications.

Connect Trello

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    trello: {
      type: "app",
      app: "trello",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.trello.com/1/members/me`,
    }, {
      token: {
        key: this.trello.$auth.oauth_access_token,
        secret: this.trello.$auth.oauth_refresh_token,
      },
      oauthSignerUri: this.trello.$auth.oauth_signer_uri,
    })
  },
})

Overview of Dropbox

The Dropbox API on Pipedream enables you to automate file and folder operations, streamlining workflows that involve storing, syncing, and sharing content. With this API, you can programmatically manage files, set up event-driven triggers based on changes within Dropbox, and leverage Pipedream's capabilities to connect with hundreds of other apps for extended automation scenarios. It's ideal for building custom file management solutions, archiving systems, or collaborative content workflows without writing extensive code.

Connect Dropbox

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    dropbox: {
      type: "app",
      app: "dropbox",
    }
  },
  async run({steps, $}) {
    const data = {
      "account_id": `${this.dropbox.$auth.oauth_uid}`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.dropboxapi.com/2/users/get_account`,
      headers: {
        Authorization: `Bearer ${this.dropbox.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Community Posts

Integrating Location Data into Pipedream Workflows
Integrating Location Data into Pipedream Workflows
Over the past few months, I've become somewhat enamored with a new service called Pipedream. Pipedream is yet another serverless solution with a bit of a twist. It makes it easy to build workflows by piecing together various actions like LEGO bricks. These actions are small pieces of programming logic that cover a wide variety of different services. You can connect these actions together along with the ability to write Node code for your own logic.