Typebot

Typebot gives you powerful blocks to create unique chat experiences. Embed them anywhere on your web/mobile apps and start collecting results like magic.

Integrate the Typebot API with the Wise API

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

Create Transfer with Wise API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Wise
 
Try it
Create Quote with Wise API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Wise
 
Try it
Create Recipient Account with Wise API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Wise
 
Try it
Fund Transfer with Wise API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Wise
 
Try it
Get Balance with Wise API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Wise
 
Try it
New Zapier Step Triggered (Instant) from the Typebot API

Emit new event when a zapier step is triggered. See the docs

 
Try it
New Transfer Completed (Instant) from the Wise API

Emit new event for a transfer completed.

 
Try it
New Transfer Created (Instant) from the Wise API

Emit new event for a transfer created.

 
Try it
New Transfer State Changed (Instant) from the Wise API

Emit new event for a transfer created.

 
Try it
Create Quote with the Wise API

Creates a quote. See docs here

 
Try it
Create Recipient Account with the Wise API

Get a specific recipient account. See docs here

 
Try it
Create Transfer with the Wise API

Creates a transfer. See docs here

 
Try it
Fund Transfer with the Wise API

Funds a transfer. See docs here

 
Try it
Get Balance with the Wise API

Get a balance. See docs here

 
Try it

Overview of Typebot

Typebot is a conversational form builder that allows you to create interactive and engaging forms for data collection. With Typebot API on Pipedream, you can automate the processing of form submissions, synchronize data with other services, and trigger customized workflows. Utilize the data gathered from Typebot in real-time, enrich it with other services, and streamline processes like lead generation, surveys, and feedback collection.

Connect Typebot

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: {
    typebot: {
      type: "app",
      app: "typebot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://typebot.io/api/users/me`,
      headers: {
        Authorization: `Bearer ${this.typebot.$auth.api_token}`,
      },
    })
  },
})

Overview of Wise

The Wise API enables seamless integration of international bank transfers into applications, offering real-time currency exchange rates, multi-currency account management, and compliance checks. With Pipedream, you can leverage Wise to automate financial workflows, sync transaction data with accounting software, and trigger actions based on payment events, all while maintaining security and reducing the manual overhead often involved in international finances.

Connect Wise

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: {
    wise: {
      type: "app",
      app: "wise",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.transferwise.com/v1/profiles`,
      headers: {
        Authorization: `Bearer ${this.wise.$auth.api_token}`,
      },
    })
  },
})