123FormBuilder

123 Form Builder is a versatile and innovative form builder used by over 2 million individuals and businesses around the world to automate data collection processes and workflows.

Integrate the 123FormBuilder API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on Form Created from 123FormBuilder API
123FormBuilder + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Form Response Submitted from 123FormBuilder API
123FormBuilder + Formatting
 
Try it
[Data] Parse JSON with Formatting API on Form Created from 123FormBuilder API
123FormBuilder + Formatting
 
Try it
[Data] Parse JSON with Formatting API on Form Response Submitted from 123FormBuilder API
123FormBuilder + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on Form Created from 123FormBuilder API
123FormBuilder + Formatting
 
Try it
Form Created from the 123FormBuilder API

Emit new event for every created form

 
Try it
Form Response Submitted from the 123FormBuilder API

Emit new event for every submitted form response

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of 123FormBuilder

The 123FormBuilder API enables you to automate form and data management tasks, allowing seamless integration with Pipedream's serverless platform. With this API, you can fetch submitted form data in real-time, update form structures, or manage respondents and their submissions programmatically. Harnessing the power of the 123FormBuilder API in Pipedream workflows unlocks the potential for dynamic data collection, efficient data processing, and connectivity with a myriad of other services for an enhanced data-driven ecosystem.

Connect 123FormBuilder

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: {
    a123formbuilder: {
      type: "app",
      app: "a123formbuilder",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.a123formbuilder.$auth.region}.123formbuilder.com/v2/users`,
      params: {
        JWT: `${this.a123formbuilder.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})