Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Emit new event when a new product is created. See the docs.
Emit new event when a new purchase order is created. See the docs.
Emit new event when a new sales order is created. See the docs.
Insert or update a product in the database. See the docs.
Insert or update a purchase order in the database. See the docs.
Insert or update a sales order in the database. See the docs.
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}`,
},
})
},
})
Megaventory is a robust inventory management API allowing for detailed tracking of products, orders, and the supply chain. You can automate the updating of stock levels, manage sales and purchase orders, and generate detailed reports. With Megaventory and Pipedream, you can craft automation workflows to streamline inventory operations, synchronize data across platforms, and trigger actions based on inventory changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
megaventory: {
type: "app",
app: "megaventory",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.megaventory.com/v2017a/json/reply/ProductGet?APIKEY=${this.megaventory.$auth.api_key}`,
headers: {
"Authorization": `Token token=${this.megaventory.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})