with Sales Simplify and FranConnect?
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: {
franconnect: {
type: "app",
app: "franconnect",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `${this.franconnect.$auth.api_uri}/rest/dataservices/module?responseType=JSON`,
headers: {
Authorization: `Bearer ${this.franconnect.$auth.oauth_access_token}`,
},
})
},
})