with Formaloo and ByteNite?
Emit new event when a form payment is completed. See the documentation
Emit new event when a form is submitted. See the documentation
Emit new event when a row is updated. See the documentation
Create a new customer on the current business. See the documentation
Creates a new video encoding task with ByteNite. See the documentation
Secures the link of the output from a finished encoding job. See the documentation
Initiates a previously created video encoding job. See the documentation
The Formaloo API lets you interact with your forms and data on Formaloo. You can create new forms, fetch responses, analyze submissions, and more, right within Pipedream. Pipedream's serverless platform facilitates the automation of these tasks, enabling you to integrate Formaloo with hundreds of other services to streamline workflows, analyze data, and synchronize across platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formaloo: {
type: "app",
app: "formaloo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.formaloo.net/v2.0/profile/`,
headers: {
"Authorization": `JWT ${this.formaloo.$auth.oauth_access_token}`,
"x-api-key": `${this.formaloo.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bytenite: {
type: "app",
app: "bytenite",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bytenite.com/v1/auth/user`,
headers: {
Authorization: `Bearer ${this.bytenite.$auth.oauth_access_token}`,
},
})
},
})