Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Imports client data for pre-filling applications to enrich the user experience. See the documentation
Retrieves information about clients referred from the user's White Swan account. See the documentation
The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})
The White Swan API provides predictive analytics for mitigating risks in financial portfolios using artificial intelligence. By leveraging the White Swan API in Pipedream, you can automate the process of gathering insights, monitoring market conditions, and integrating advanced risk analysis into your existing financial systems. With Pipedream's serverless platform, you can construct workflows to react in real-time to data from White Swan, send alerts, and even automate trades or adjustments based on risk thresholds or predictive signals.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
white_swan: {
type: "app",
app: "white_swan",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.whiteswan.io/api/1.1/wf/plan_requests`,
headers: {
Authorization: `Bearer ${this.white_swan.$auth.api_key}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
})
},
})