Typeform

Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.

Integrate the Typeform API with the Workast API

Setup the Typeform API trigger to run a workflow which integrates with the Workast API. Pipedream's integration platform allows you to integrate Typeform and Workast remarkably fast. Free for developers.

Create Space with Workast API on New Submission from Typeform API
Typeform + Workast
 
Try it
Create Task with Workast API on New Submission from Typeform API
Typeform + Workast
 
Try it
Create a Form with Typeform API on New Task from Workast API
Workast + Typeform
 
Try it
Create an Image with Typeform API on New Task from Workast API
Workast + Typeform
 
Try it
Delete an Image with Typeform API on New Task from Workast API
Workast + Typeform
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
New Task from the Workast API

Emit new event for each new task

 
Try it
Create Space with the Workast API

Creates a space. See docs here

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. See the docs here

 
Try it
Create Task with the Workast API

Creates a task. See docs here

 
Try it
Create an Image with the Typeform API

Adds an image in your Typeform account. See the docs here

 
Try it
Delete an Image with the Typeform API

Deletes an image from your Typeform account. See the docs here

 
Try it

Overview of Typeform

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:

  • A contact form for your website that allows people to easily get in touch
    with you
  • An order form for your product or service that allows people to place orders
    easily and securely
  • A survey form that allows you to collect data and feedback from people
  • A registration form for your event or conference that allows people to sign
    up easily and securely

Connect Typeform

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of Workast

The Workast API allows developers to create powerful applications for
streamlining the process of task management. With the Workast API, you can
build applications that will help users automate their personal and
professional task management workflow.

Here are some examples of what you can build using the Workast API:

  • Task Management Systems: You can build applications to help users manage
    their tasks, reminders, and subtasks.
  • Collaboration Platforms: With the Workast API, you can create an application
    to help teams collaborate on tasks and share updates in real-time.
  • Project Dashboards: You can create an application that will help users
    visualize the progress of their projects.
  • Scheduling: Applications that integrate with calendars, to help users create
    and manage their schedules.
  • Reporting: With the Workast API, you can build application with reporting
    capabilities, to help users track their task progress and keep track of their
    team’s progress.
  • Database Management: You can create an application to help users store and
    organize their data.
  • Time Tracking: Create an application that helps users keep track of their
    time and track the progress of their tasks.

Connect Workast

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    workast: {
      type: "app",
      app: "workast",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.todobot.io/user/me`,
      headers: {
        Authorization: `Bearer ${this.workast.$auth.api_token}`,
      },
    })
  },
})