Typeform

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

Integrate the Typeform API with the GoCardless Bank Account Data (formerly Nordigen) API

Setup the Typeform API trigger to run a workflow which integrates with the GoCardless Bank Account Data (formerly Nordigen) API. Pipedream's integration platform allows you to integrate Typeform and GoCardless Bank Account Data (formerly Nordigen) remarkably fast. Free for developers.

Create Requisition Link with Nordigen API on New Submission from Typeform API
Typeform + GoCardless Bank Account Data (formerly Nordigen)
 
Try it
Delete Requisition Link with Nordigen API on New Submission from Typeform API
Typeform + GoCardless Bank Account Data (formerly Nordigen)
 
Try it
Get Account Balances with Nordigen API on New Submission from Typeform API
Typeform + GoCardless Bank Account Data (formerly Nordigen)
 
Try it
Get Account Details with Nordigen API on New Submission from Typeform API
Typeform + GoCardless Bank Account Data (formerly Nordigen)
 
Try it
Get Account Metadata with Nordigen API on New Submission from Typeform API
Typeform + GoCardless Bank Account Data (formerly Nordigen)
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
New Transaction from the GoCardless Bank Account Data (formerly Nordigen) API

Emit new event when a transaction occurs

 
Try it
Create Requisition Link with the GoCardless Bank Account Data (formerly Nordigen) API

Create a requisition link and id to be used in other Nordigen actions. See the docs

 
Try it
Create a Form with the Typeform API

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

 
Try it
Delete Requisition Link with the GoCardless Bank Account Data (formerly Nordigen) API

Delete requisition and its end user agreement. See the docs

 
Try it
Create an Image with the Typeform API

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

 
Try it
Get Account Balances with the GoCardless Bank Account Data (formerly Nordigen) API

Get the balances of a Nordigen account. See the docs

 
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 GoCardless Bank Account Data (formerly Nordigen)

What You Can Build with the Nordigen API

The Nordigen API allows developers to easily access financial data and use it
to build the solutions their customers need. With the Nordigen API, you can
build innovative solutions such as:

  • Financial products that rate and compare banking services
  • Money management tools that generate personalised budgeting plans
  • Automated personal finance solutions
  • Robo advisors for financial investment advice
  • Predictive analytics for cash flow forecasting
  • Digital banking solutions for customers
  • Complex risk profiling solutions
  • Customer segmentation analytics

Connect GoCardless Bank Account Data (formerly Nordigen)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    nordigen: {
      type: "app",
      app: "nordigen",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://bankaccountdata.gocardless.com/api/v2/institutions/`,
      headers: {
        Authorization: `Bearer ${this.nordigen.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})