with Fomo and Salesloft?
The Fomo API enables real-time social proof by broadcasting customer interactions, like purchases or sign-ups, to site visitors, fostering a sense of urgency and trust. Leveraging this API on Pipedream, developers can create dynamic, event-driven workflows that respond to these social cues with automated actions like sending emails, updating CRM records, or triggering custom notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fomo: {
type: "app",
app: "fomo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.fomo.com/api/v1/applications/me`,
headers: {
"Content-Type": `application/json`,
"Authorization": `Token ${this.fomo.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
salesloft: {
type: "app",
app: "salesloft",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.salesloft.com/v2/me`,
headers: {
Authorization: `Bearer ${this.salesloft.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})