Jotform

Jotform enables you to create online forms, collect responses directly in your email, and create fillable PDF forms.

Integrate the Jotform API with the Trengo API

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

Create Contact with Trengo API on New Submission (Instant) from Jotform API
Jotform + Trengo
 
Try it
Find Contacts with Trengo API on New Submission (Instant) from Jotform API
Jotform + Trengo
 
Try it
Log A Voice Call with Trengo API on New Submission (Instant) from Jotform API
Jotform + Trengo
 
Try it
Send A Message with Trengo API on New Submission (Instant) from Jotform API
Jotform + Trengo
 
Try it
Send A Team Chat Message with Trengo API on New Submission (Instant) from Jotform API
Jotform + Trengo
 
Try it
New Submission (Instant) from the Jotform API

Emit new event when a form is submitted

 
Try it
New Inbound Message Event from the Trengo API

Emit new events when an inbound message received. See the docs here

 
Try it
New Internal Note Event from the Trengo API

Emit new events when a internal note added. See the docs here

 
Try it
New Outbound Message Event from the Trengo API

Emit new events when an outbound message sent. See the docs here

 
Try it
New Phone Call Ended Event from the Trengo API

Emit new events when an phone call ended. See the docs here

 
Try it
Create Contact with the Trengo API

Creates a contact. If a contact with given identifier already exists, returns it. See the docs

 
Try it
Get Form Submissions with the Jotform API

Gets a list of form responses See the docs here

 
Try it
Find Contacts with the Trengo API

Finds contacts with the given term. See the docs

 
Try it
Get Monthly User Usage with the Jotform API

Gets number of form submissions received this month. Also, get number of SSL form submissions, payment form submissions and upload space used by user See the docs here

 
Try it
Log A Voice Call with the Trengo API

Logs a phone call from external VOIP applications, See the docs

 
Try it

Overview of Jotform

Using the Jotform API, you can easily add forms to your website or application.
You can also use the Jotform API to manage your form submissions, gather
insights from your form data, and more.

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

  • A contact form for your website
  • A survey form to collect data from your users
  • A registration form for your events or courses
  • A payment form for your products or services
  • A lead capture form to collect leads from your website visitors

Connect Jotform

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { axios } from "@pipedream/platform"

export default defineComponent({
  props: {
    jotform: {
      type: "app",
      app: "jotform",
    }
  },
  methods: {
    _getBaseUrl() {
      let baseUrl = `https://${this.jotform.$auth.region}.jotform.com/`;
      const standardSubdomains = [
        "api",
        "eu-api",
        "hipaa-api",
      ];
      if (!standardSubdomains.includes(this.jotform.$auth.region)) {
        baseUrl += "API/";
      }
      return baseUrl;
    },
  },
  async run({steps, $}) {
    const baseUrl = this._getBaseUrl(); 
    return await axios($, {
      url: `${baseUrl}user`, 
      params: {
        apiKey: `${this.jotform.$auth.api_key}`,
      },
    })
  },
})

Overview of Trengo

You can build amazing customer service experiences by using the Trengo API.
It's the platform to help teams work better together, and offers features to
optimize your customer conversation. For example, you can use Trengo to:

  • Improve customer service by leveraging automation for fast and personalized
    responses
  • Increase efficiency by optimizing operational workflows
  • Gather insights from customer conversations to improve customer service
  • Automate conversations like welcome messages and error notifications
  • Filter and manage incoming conversations to make sure the right person
    provides the right answers

These are just some of the examples of what you can do with the Trengo API.
With the Trengo platform, you can make sure your customer conversations deliver
the best possible outcomes, consistently.

Connect Trengo

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