All-in-one CRM & Sales Automation Platform
Emit new event each time a campaign is created. See the docs
Emit new event each time a contact is created. See the docs
Emit new event each time a contact replies to an email or LinkedIn message. See the docs
The Overloop API is a powerhouse for sales automation, enabling users to streamline their sales pipeline by automating repetitive tasks, syncing data across platforms, and enhancing lead management. With Pipedream, you can leverage Overloop's capabilities to create detailed, event-driven workflows that respond in real-time to changes in your sales environment. This integration can help maintain a healthy sales funnel, ensure timely follow-ups, and personalize communication at scale.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
overloop: {
type: "app",
app: "overloop",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.overloop.com/public/v1/organizations`,
headers: {
"Authorization": `${this.overloop.$auth.api_key}`,
"Content-Type": `application/vnd.api+json; charset=utf-8`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})