People-Friendly Forms and Surveys
With the Typeform API, you can easily create beautiful, interactive forms that
allow people to share their information with you in an engaging way. Here are
some examples of what you can build with the Typeform API:
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 pCloud API allows you to build a variety of products and applications that
integrate with the pCloud service. With the pCloud API, you can get access to a
wide range of features, including:
With pCloud, you can easily build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pcloud: {
type: "app",
app: "pcloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.pcloud.$auth.hostname}/userinfo`,
headers: {
Authorization: `Bearer ${this.pcloud.$auth.oauth_access_token}`,
},
})
},
})