with Faraday and GreenSpark?
The Faraday API empowers users to harness rich consumer data and predictive analytics for personalized marketing and strategic insights. On Pipedream, you can tap into this potential by creating workflows that trigger based on various events or schedules, process data with Faraday's capabilities, and then take actions – all without managing server infrastructure. Streamline customer interactions, forecast trends, and enrich contact lists by integrating other services for a seamless data-driven ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
faraday: {
type: "app",
app: "faraday",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.faraday.ai/v1/accounts/current`,
headers: {
Authorization: `Bearer ${this.faraday.$auth.api_key}`,
"Accept": `*/*`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
greenspark: {
type: "app",
app: "greenspark",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getgreenspark.com/v1/project-categories`,
headers: {
"x-api-key": `${this.greenspark.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})