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 SWAPI - Star Wars API

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

Get Film with SWAPI - Star Wars API on Form Created from 123FormBuilder API
123FormBuilder + SWAPI - Star Wars
 
Try it
Get Film with SWAPI - Star Wars API on Form Response Submitted from 123FormBuilder API
123FormBuilder + SWAPI - Star Wars
 
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
Get Film with the SWAPI - Star Wars API

Get a film

 
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}`,
      },
    })
  },
})

Overview of SWAPI - Star Wars

The SWAPI - Star Wars API is a treasure trove of structured data from the Star Wars universe. It's a go-to resource for fetching information about planets, spaceships, vehicles, people, films, and species from the iconic franchise. Using Pipedream, you can harness this data to create automations and workflows that trigger based on specific criteria from SWAPI. For instance, you could set up a workflow that notifies you when new data is added, enrich customer profiles with their favorite Star Wars characters, or even use it for trivia games by pulling random facts.

Connect SWAPI - Star Wars

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    swapi: {
      type: "app",
      app: "swapi",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://swapi.dev/api/films/1/`,
    })
  },
})