Symbl.ai

AI platform built for analyzing open domain human-to-human conversations

Integrate the Symbl.ai API with the Pipedream API

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

Create Formatted Transcript with Symbl.ai API on New Scheduled Tasks from Pipedream API
Pipedream + Symbl.ai
 
Try it
Delete Conversation with Symbl.ai API on New Scheduled Tasks from Pipedream API
Pipedream + Symbl.ai
 
Try it
Get Action Items with Symbl.ai API on New Scheduled Tasks from Pipedream API
Pipedream + Symbl.ai
 
Try it
Get Analytics with Symbl.ai API on New Scheduled Tasks from Pipedream API
Pipedream + Symbl.ai
 
Try it
Get Conversation with Symbl.ai API on New Scheduled Tasks from Pipedream API
Pipedream + Symbl.ai
 
Try it
New Scheduled Tasks from the Pipedream API

Exposes an HTTP API for scheduling messages to be emitted at a future time

 
Try it
New Upcoming Event Alert from the Pipedream API

Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.

 
Try it
New Upcoming Calendar Event from the Pipedream API

Emit new event when a Calendar event is upcoming, this source is using reminderMinutesBeforeStart property of the event to determine the time it should emit.

 
Try it
Create Formatted Transcript with the Symbl.ai API

Create formatted transcript from the Conversation. See the doc here.

 
Try it
Delete Conversation with the Symbl.ai API

Permanently deletes the conversation and all related entities such as messages, insights, topics, etc. See the doc here.

 
Try it
Get Action Items with the Symbl.ai API

Get a list of all the action items generated from the conversation. See the doc here

 
Try it
Create a Subscription with the Pipedream API

Create a Subscription. See Doc

 
Try it
Get Analytics with the Symbl.ai API

Get a list of metrics and member analytics (speaker ratio, talk time, silence, pace and overlap) from the conversation. See the doc here

 
Try it

Overview of Symbl.ai

Symbl.ai is a leading AI-powered platform that enables enterprises to quickly
build and launch AI-driven applications. The Symbl.ai API offers powerful tools
for developers and data scientists to create AI-powered voice and text-based
experiences to meet various use cases. With the Symbl.ai API, developers can
quickly and easily build applications that can provide insights and support for
various activities such as customer support, business meetings, customer
engagement, etc.

Here are a few examples of what you can build using the Symbl.ai API:

  • Speech recognition and transcription for customer service calls
  • Automation of customer onboarding processes
  • AI-powered dialog management for customer engagement
  • Business intelligence gathering from audio/video calls
  • Virtual assistant for automated meetings
  • Natural language processing for sentiment analysis
  • Text-based customer service bots
  • Handwritten text recognition
  • Automatic summarization of voice calls
  • AI- Guided customer support processes

Connect Symbl.ai

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: {
    symbl_ai: {
      type: "app",
      app: "symbl_ai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.symbl.ai/v1/manage/trackers`,
      headers: {
        Authorization: `Bearer ${this.symbl_ai.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Overview of Pipedream

Pipedream is an API that allows you to build applications that can connect to
various data sources and processes them in real-time. You can use Pipedream to
create applications that can perform ETL (Extract, Transform, and Load) tasks,
as well as to create data-driven workflows.

Some examples of applications you can build using the Pipedream API include:

  • An application that can extract data from a database, transform it, and then
    load it into another database.
  • An application that can monitor a data source for changes, and then trigger a
    workflow in response to those changes.
  • An application that can poll an API for new data, and then process that data
    in real-time.

Connect Pipedream

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