Easyly

Easyly Cloud-based CRM software for streamlined sales, marketing, and everyday tasks with customizable workflows.

Integrate the Easyly API with the Dropbox API

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

Create a Text File with Dropbox API on New Event Triggered (Instant) from Easyly API
Easyly + Dropbox
 
Try it
Post New Lead with Easyly API on New File from Dropbox API
Dropbox + Easyly
 
Try it
Post New Lead with Easyly API on New Folder from Dropbox API
Dropbox + Easyly
 
Try it
Create folder with Dropbox API on New Event Triggered (Instant) from Easyly API
Easyly + Dropbox
 
Try it
Create or Append to a Text File with Dropbox API on New Event Triggered (Instant) from Easyly API
Easyly + Dropbox
 
Try it
New Event Triggered (Instant) from the Easyly API

Emit new event when an action is triggered in network leads. After creating the source, you need to register a Webhook on Easyly using the source's HTTP Endpoint. See the documentation

 
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 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
New or Modified File or Folder from the Dropbox API

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

 
Try it
Post New Lead with the Easyly API

Allows a user to post a new lead to their Easyly account. See the documentation

 
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

Overview of Easyly

The Easyly API offers a suite of features aimed at simplifying complex tasks such as address validation, geocoding, and route optimization. With Pipedream's serverless platform, you can leverage this API to automate workflows that require address verification, coordinate mapping, or efficient route planning. The integration of Easyly with Pipedream allows you to set up triggers and actions without setting up a server, making it straightforward to incorporate real-time data processing and event-driven architectures into your applications.

Connect Easyly

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: {
    easyly: {
      type: "app",
      app: "easyly",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.easyly.com/v1/leads/{{your_leads}}`, // Add in a valid lead ID here.
      headers: {
        Authorization: `Bearer ${this.easyly.$auth.api_key}`,
      },
    })
  },
})

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.