Easyly Cloud-based CRM software for streamlined sales, marketing, and everyday tasks with customizable workflows.
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
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Allows a user to post a new lead to their Easyly account. See the documentation
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
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.
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}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})