Inside Sales Software CRM with Calling & Emailing
Emit new event when configured type of events triggered, See all possibilities
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the Close API, you can build a number of applications and integrations
that can automate your sales process and make your life easier. Here are some
examples:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
close: {
type: "app",
app: "close",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.close.com/api/v1/me/`,
auth: {
username: `${this.close.$auth.api_key}`,
password: ``,
},
})
},
})
// 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
},
})