Digitize your forms and workflows using our cloud software, so you can love what you do! The #1 no code platform for desktop & mobile
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
Format a date string to another date string. For more examples on formatting, see the Sugar Date Format documentation.
The Forms On Fire API allows you to automate interactions with your mobile forms. Using it with Pipedream, you can trigger workflows based on form submissions, update or retrieve data from forms, and automate interactions with other apps. It's useful for extending the capabilities of your forms, integrating with third-party services, and streamlining data processes without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
forms_on_fire: {
type: "app",
app: "forms_on_fire",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://secure.formsonfire.com/api/v2/user`,
params: {
format: `json`,
CompanyId: `${this.forms_on_fire.$auth.company_id}`,
Integrationkey: `${this.forms_on_fire.$auth.integration_key}`,
Email: `[replace_with_user_email]`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})