Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
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 Workamajig API allows for automation and integration of project management tasks within the Workamajig platform. Using Pipedream, developers can create workflows to manage projects, resources, and client accounts by triggering events, syncing data, and automating processes. Pipedream's serverless platform enables the execution of these workflows on demand or on a schedule, making it possible to connect Workamajig with other apps and services to streamline operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
workamajig: {
type: "app",
app: "workamajig",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app6.workamajig.com/api/beta1/contacts/search`,
headers: {
"APIAccessToken": `${this.workamajig.$auth.api_access_token}`,
"UserToken": `${this.workamajig.$auth.user_token}`,
},
params: {
name: `John`, //E.g. John
},
})
},
})