Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Emit new event when a time entry is started. See docs here
Emit new event when a time entry is created. See docs here
Emit new event when a time entry is updated. See docs here
Emit new event on receive a webhook event. See docs here
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}`,
},
})
},
})
Toggl Track is a time tracking API that lets you start, stop, and manage timers and time entries, as well as manage projects, clients, and tasks associated with time records. With the Toggl Track API on Pipedream, you can automate time tracking activities, synchronize data across platforms, and generate insights from time tracking data to improve productivity and project management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
toggl: {
type: "app",
app: "toggl",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.track.toggl.com/api/v9/me`,
auth: {
username: `${this.toggl.$auth.api_token}`,
password: `api_token`,
},
})
},
})