with Sales Simplify and Mailsoftly?
The Sales Simplify API, integrated within Pipedream's ecosystem, is a powerhouse for automating sales and customer relationship tasks. Utilize this API to streamline lead management, automate follow-ups, and track customer interactions systematically. With Pipedream, you can effortlessly create serverless workflows that link Sales Simplify with various other apps, providing a cohesive and efficient automation system. Harness the capability to trigger events based on new leads, update customer records in real-time, and generate data-driven insights that keep your sales pipeline flowing smoothly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sales_simplify: {
type: "app",
app: "sales_simplify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.salessimplify.com/api/v1/lead`,
headers: {
Authorization: `Bearer ${this.sales_simplify.$auth.api_key}`,
},
params: {
pageNo: `1`,
limit: `10`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailsoftly: {
type: "app",
app: "mailsoftly",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.mailsoftly.com/api/v3/authentication`,
headers: {
"authorization": `${this.mailsoftly.$auth.api_key}`,
},
})
},
})