with Currents API and FormTitan?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
currents_api: {
type: "app",
app: "currents_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.currentsapi.services/v1/search?language=us&keywords=amazon&apiKey=${this.currents_api.$auth.api_token}`,
})
},
})
The FormTitan API enables interaction with FormTitan's form-building and lead-capture capabilities programmatically. With Pipedream, you can harness this API to automate form data processing, synchronize data across various platforms, and trigger actions based on form submissions. This can streamline complex workflow scenarios, such as lead nurturing, survey data analysis, and customer feedback management, without the need to manually intervene.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formtitan: {
type: "app",
app: "formtitan",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.formtitan.$auth.account}.formtitan.com/api/v1/users`,
headers: {
"ftAPIKey": `${this.formtitan.$auth.api_key}`,
},
})
},
})