Rev

Affordable, accurate, easy-to-use speech-to-text solutions powered by people and A.I working together. Rev offers transcripts, captions, subtitles, and more.

Integrate the Rev API with the Gmail (Developer App) API

Setup the Rev API trigger to run a workflow which integrates with the Gmail (Developer App) API. Pipedream's integration platform allows you to integrate Rev and Gmail (Developer App) remarkably fast. Free for developers.

Add Label to Email with Gmail (Developer App) API on Order Submitted from Rev API
Rev + Gmail (Developer App)
 
Try it
Create Automated Transcription Order Using External Link with Rev API on New Attachment Received from Gmail (Developer App) API
Gmail (Developer App) + Rev
 
Try it
Create Automated Transcription Order Using External Link with Rev API on New Email Received from Gmail (Developer App) API
Gmail (Developer App) + Rev
 
Try it
Create Automated Transcription Order Using External Link with Rev API on New Labeled Email from Gmail (Developer App) API
Gmail (Developer App) + Rev
 
Try it
Create Automated Transcription Order Using External Link with Rev API on New Sent Email from Gmail (Developer App) API
Gmail (Developer App) + Rev
 
Try it
Order Submitted from the Rev API

Emit new event when an order is submitted. See docs here.

 
Try it
New Attachment Received from the Gmail (Developer App) API

Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.

 
Try it
New Email Received from the Gmail (Developer App) API

Emit new event when an email is received. This source is capped at 100 max new messages per run.

 
Try it
New Labeled Email from the Gmail (Developer App) API

Emit new event when a new email is labeled.

 
Try it
New Sent Email from the Gmail (Developer App) API

Emit new event for each new email sent. (Maximum of 300 events emited per execution)

 
Try it
Create Automated Transcription Order Using External Link with the Rev API

Submit a new automated transcription order using a external link that contains the media. See docs here.

 
Try it
Add Label to Email with the Gmail (Developer App) API

Add a label to an email message. See the docs

 
Try it
Create Caption Order Using External Link with the Rev API

Submit a new caption order using a external link that contains the media. See docs here.

 
Try it
Create Draft with the Gmail (Developer App) API

Create a draft from your Google Workspace email account

 
Try it
Create Transcription Order Using External Link with the Rev API

Submit a new transcription order using a external link that contains the media. See docs here.

 
Try it

Overview of Rev

The Rev API offers transcription, caption, and translation services, which you can integrate into automated workflows on Pipedream. Imagine automatically transcribing recorded meetings, generating captions for user-generated video content, or translating documents on-the-fly. With Rev, you can streamline media production, enhance accessibility, and break down language barriers, all while maintaining high accuracy.

Connect Rev

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: {
    rev: {
      type: "app",
      app: "rev",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.rev.com/api/v1/orders`,
      headers: {
        "Authorization": `Rev ${this.rev.$auth.client_api_key}:${this.rev.$auth.user_api_key}`,
      },
    })
  },
})

Overview of Gmail (Developer App)

With the Gmail (Developer App) API on Pipedream, you can automate a variety of email-related tasks, directly manipulating your Gmail account to streamline workflows. From sending emails programmatically to parsing new inbound messages for data extraction, the API allows for deep interaction with your Gmail inbox. Use cases include automating follow-ups, organizing your inbox with filters and labels, and synchronizing important email events with other services to act upon new information instantly.

Connect Gmail (Developer App)

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: {
    gmail_custom_oauth: {
      type: "app",
      app: "gmail_custom_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.gmail_custom_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})